stack-init/infrastructure/postgres/init/auth.sql

4 lines
127 B
SQL

CREATE USER auth WITH PASSWORD 'CHANGE_ME';
CREATE DATABASE auth_db OWNER auth;
\c auth_db
GRANT ALL ON SCHEMA public TO auth;