Files
wyndham-ARR/database/001_booking_finance_mvp_schema.down.sql
2026-07-29 16:38:05 +08:00

11 lines
249 B
PL/PgSQL

-- DESTRUCTIVE ROLLBACK DRAFT ONLY.
-- Run only after confirming that the booking and finance schemas contain no data that must be kept.
-- This file has not been executed.
BEGIN;
DROP SCHEMA finance CASCADE;
DROP SCHEMA booking CASCADE;
COMMIT;