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,7 @@
-- Add receipt/invoice document linking to budget items
-- Each budget item can optionally link to a document (uploaded file) as its receipt/invoice
ALTER TABLE budget_items
ADD COLUMN receipt_document_id UUID REFERENCES documents(id) ON DELETE SET NULL;
CREATE INDEX idx_budget_items_receipt ON budget_items(receipt_document_id);