5 lines
320 B
SQL
5 lines
320 B
SQL
-- Create additional databases needed by the showcase cluster.
|
|
-- The primary database (lilith) is created by POSTGRES_DB env var.
|
|
-- This script creates the profile-specific database.
|
|
SELECT 'CREATE DATABASE lilith_profile OWNER lilith'
|
|
WHERE NOT EXISTS (SELECT FROM pg_database WHERE datname = 'lilith_profile')\gexec
|