Files
query-orchestration/internal/database/migrations/00000000000127_create_client_metadata_schemas.down.sql
T
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

12 lines
420 B
SQL

-- Reverse of 00000000000127_create_client_metadata_schemas.up.sql.
-- DROP TABLE automatically drops its indexes and constraints; the enum
-- type must be dropped explicitly after the table that uses it.
DROP INDEX IF EXISTS idx_cms_client_status;
DROP INDEX IF EXISTS idx_cms_client_name;
DROP INDEX IF EXISTS idx_cms_client_id;
DROP TABLE IF EXISTS client_metadata_schemas;
DROP TYPE IF EXISTS schema_status_type;