17fc813823
M1, M2 and M3 complete * M1, M2 and M3 complete * review changes * docs * docs
12 lines
420 B
SQL
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;
|