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,12 @@
-- Independent booking-domain test database bootstrap.
-- PostgreSQL 15+
-- REVIEW DRAFT ONLY: this file has not been executed.
-- Run while connected to the existing maintenance database.
-- CREATE DATABASE cannot run inside a transaction block.
CREATE DATABASE booking_test
WITH
TEMPLATE = template0
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.utf8'
LC_CTYPE = 'en_US.utf8';