mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-26 20:45:37 +02:00
* feat(properties): add custom icons Co-authored-by: multica-agent <github@multica.ai> * fix(migrations): use unique property icon prefix Co-authored-by: multica-agent <github@multica.ai> * fix(properties): replace emoji icons with Lucide picker Co-authored-by: multica-agent <github@multica.ai> --------- Co-authored-by: Lambda <lambda@multica.ai> Co-authored-by: multica-agent <github@multica.ai>
7 lines
322 B
SQL
7 lines
322 B
SQL
-- Optional catalog icon key for workspace custom property definitions. The empty
|
|
-- string represents no icon so existing rows and older clients keep their
|
|
-- current appearance. PostgreSQL can add this constant default without a
|
|
-- table rewrite.
|
|
ALTER TABLE issue_property
|
|
ADD COLUMN icon TEXT NOT NULL DEFAULT '';
|