Files
query-orchestration/internal/database/migrations/00000000000129_create_document_custom_metadata.down.sql
Jay Brown 17fc813823 Merged in feature/mutable-metadata1 (pull request #221)
M1, M2 and M3 complete

* M1, M2 and M3 complete

* review changes

* docs

* docs
2026-04-16 23:11:26 +00:00

7 lines
305 B
SQL

-- Rollback migration 129: drop document_custom_metadata and its index.
-- The FK cascade from documents takes care of any in-flight rows when the
-- table itself is dropped, so no explicit DELETE is required.
DROP INDEX IF EXISTS idx_dcm_doc_version_desc;
DROP TABLE IF EXISTS document_custom_metadata;