feat: prepare ARR for controlled public deployment

This commit is contained in:
Wyndham ARR
2026-07-29 16:38:05 +08:00
commit a701de9f0e
271 changed files with 48472 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
-- Manual rollback for migration 009. Never run as part of normal startup.
BEGIN;
DO $$
BEGIN
IF current_database() <> 'booking_test' THEN
RAISE EXCEPTION
'ARR source read grant rollback is allowed only in booking_test';
END IF;
END;
$$;
DROP TABLE ingestion.source_read_grants;
COMMIT;