stack/deploy/db_migrations/001_create_identity_svc_db.sql

10 lines
207 B
MySQL
Raw Normal View History

2022-10-06 20:40:27 +02:00
-- TODO: Add variables for db, user name, etc...
CREATE DATABASE svc_identity
WITH
OWNER = postgres
ENCODING = 'UTF8'
CONNECTION LIMIT = -1;
GRANT ALL ON DATABASE svc_identity TO postgres;