Files
probo/pkg/coredata/migrations/20251216T104900Z.sql
2025-12-16 19:02:57 +01:00

17 lines
395 B
SQL

ALTER TABLE
frameworks
ADD
COLUMN light_logo_file_id TEXT,
ADD
COLUMN dark_logo_file_id TEXT;
ALTER TABLE
frameworks
ADD
CONSTRAINT frameworks_light_logo_file_id_fkey FOREIGN KEY (light_logo_file_id) REFERENCES files(id) ON DELETE
SET
NULL,
ADD
CONSTRAINT frameworks_dark_logo_file_id_fkey FOREIGN KEY (dark_logo_file_id) REFERENCES files(id) ON DELETE
SET
NULL;