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

4 lines
162 B
SQL

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