Files
sql/postgresql-entrypoint-initdb.d/11_postgraphile.sql

6 lines
217 B
MySQL
Raw Normal View History

2025-10-14 22:28:15 +02:00
create role postgraphile_user nosuperuser nocreatedb nocreaterole noinherit noreplication nobypassrls
2025-10-14 21:11:54 +02:00
login password '9013';
2025-10-14 22:28:15 +02:00
alter default privileges in schema public
grant select on tables to postgraphile_user;