Skip to content
Discussion options

You must be logged in to vote

Did you run SQL to modify the grants on the public schema?
Do you use something like Prisma that would do so?

This is not an RLS issue but a grant issue.

grant usage on schema public to postgres, anon, authenticated, service_role;

grant all privileges on all tables in schema public to postgres, anon, authenticated, service_role;
grant all privileges on all functions in schema public to postgres, anon, authenticated, service_role;
grant all privileges on all sequences in schema public to postgres, anon, authenticated, service_role;

alter default privileges in schema public grant all on tables to postgres, anon, authenticated, service_role;
alter default privileges in schema public grant

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@oliverpaddock
Comment options

Answer selected by oliverpaddock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants