Files
files/migrations/004_office_document_nodes.down.sql
Grendgi 3dc5044c99
All checks were successful
CI / hygiene (push) Successful in 2s
Build and Deploy / build-and-deploy (push) Successful in 32s
CI / test (push) Successful in 20s
feat: support office document nodes
2026-06-16 15:25:33 +03:00

8 lines
251 B
SQL

ALTER TABLE files_nodes
DROP CONSTRAINT IF EXISTS files_nodes_file_storage_check;
ALTER TABLE files_nodes
ADD CONSTRAINT files_nodes_file_storage_check CHECK (
node_type IN ('folder', 'google_sheet') OR storage_key IS NOT NULL
);