phonograph/dev-services/docker-entrypoint-initdb.d/init-app.sql
2025-12-09 18:16:24 +00:00

6 lines
197 B
SQL

create user app createdb createrole password 'guest';
grant connect on database postgres to app;
create schema app;
grant usage, create on schema app to app;
alter role app set search_path = app;