beeta/database/00-create-nakama-db.sql

8 lines
311 B
MySQL
Raw Normal View History

2026-01-05 22:54:27 -05:00
-- Create Nakama database for game server
-- This runs before init.sql (alphabetically sorted)
-- Note: This runs in the context of the postgres database
-- Create the nakama database if it doesn't exist
SELECT 'CREATE DATABASE nakama'
WHERE NOT EXISTS (SELECT FROM pg_database WHERE datname = 'nakama')\gexec