mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +02:00
Add priority field (urgent/high/medium/low/none) to projects, matching the existing issue priority system. Includes database migration, API support for create/update/list filtering, and UI for the create dialog, project list table, and project detail page.
3 lines
138 B
SQL
3 lines
138 B
SQL
ALTER TABLE project ADD COLUMN priority TEXT NOT NULL DEFAULT 'none'
|
|
CHECK (priority IN ('urgent', 'high', 'medium', 'low', 'none'));
|