-- Runs once on first container start (Postgres initdb hook). -- Prisma migrate (passenger) and TypeORM migrate (iam) create their own tables, -- but the schemas must exist first. edr_payment is owned by the payment-api. CREATE SCHEMA IF NOT EXISTS passenger; CREATE SCHEMA IF NOT EXISTS iam; CREATE SCHEMA IF NOT EXISTS edr_payment;