Merge branch 'development' into feat/inventory-logs

This commit is contained in:
giovanni
2026-01-28 13:44:26 +07:00
56 changed files with 2772 additions and 180 deletions
@@ -0,0 +1,7 @@
BEGIN;
-- Migration: revert documents.path length
ALTER TABLE documents
ALTER COLUMN path TYPE VARCHAR(50);
COMMIT;
@@ -0,0 +1,7 @@
BEGIN;
-- Migration: extend documents.path length for environment prefixes
ALTER TABLE documents
ALTER COLUMN path TYPE VARCHAR(255);
COMMIT;