phonograph/dev-services/docker-entrypoint-initdb.d/init-app.sql

7 lines
197 B
MySQL
Raw Normal View History

2025-12-01 23:59:46 -08:00
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;