Files
sql/postgresql-entrypoint-initdb.d/11_postgraphile.sql
2025-10-14 22:28:15 +02:00

6 lines
217 B
SQL

create role postgraphile_user nosuperuser nocreatedb nocreaterole noinherit noreplication nobypassrls
login password '9013';
alter default privileges in schema public
grant select on tables to postgraphile_user;