13 lines
392 B
SQL
13 lines
392 B
SQL
-- 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';
|