Добавлены таблицы maintenance_policy и maintenance_policy_config_audit для postgres и sqlite; в postgres_maintenance_audit — колонка policy_id. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
230 B
SQL
8 lines
230 B
SQL
DROP INDEX IF EXISTS idx_postgres_maintenance_audit_policy;
|
|
|
|
ALTER TABLE postgres_maintenance_audit DROP COLUMN IF EXISTS policy_id;
|
|
|
|
DROP TABLE IF EXISTS maintenance_policy_config_audit;
|
|
|
|
DROP TABLE IF EXISTS maintenance_policy;
|