feat(portfolio): add grouping visibility and ordering controls

This commit is contained in:
2026-02-12 22:46:04 +01:00
parent b9424c8a8b
commit 984511f166
7 changed files with 263 additions and 10 deletions

View File

@@ -0,0 +1,4 @@
ALTER TABLE "Tag"
ADD COLUMN "description" TEXT,
ADD COLUMN "sortOrder" INTEGER NOT NULL DEFAULT 0,
ADD COLUMN "isVisible" BOOLEAN NOT NULL DEFAULT true;