feat: map shapes, image persistence, grab tool, layer rename/delete, i18n, page metadata

This commit is contained in:
AlacrisDevs
2026-02-08 23:11:09 +02:00
parent 75a2aefadb
commit f2384bceb8
125 changed files with 22605 additions and 3902 deletions

View File

@@ -0,0 +1,5 @@
-- Add 'triple' to layout_preset enum for 3-column layout
ALTER TYPE layout_preset ADD VALUE IF NOT EXISTS 'triple';
-- Migrate any existing 'focus_sidebar' or 'custom' layouts to 'split'
UPDATE department_dashboards SET layout = 'split' WHERE layout IN ('focus_sidebar', 'custom');