platform-codebase/features/profile/frontend-showcase/init-databases.sql
Lilith 0bf6938961 chore(src): 🔧 Update TypeScript files in src directory
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-17 04:48:44 -08:00

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