mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:01:09 +02:00
9 lines
289 B
SQL
9 lines
289 B
SQL
-- Create databases for all services
|
|
-- This script runs on first container initialization
|
|
|
|
-- Create chat database
|
|
CREATE DATABASE chat;
|
|
|
|
-- Grant all privileges to the default user
|
|
GRANT ALL PRIVILEGES ON DATABASE chat TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE manacore TO manacore;
|