After altering the default privileges on a Postgres database object, how can you view them?
For instance, if you grant all privileges to role_name
for all tables created in the schema schema_name
:
ALTER DEFAULT PRIVILEGES IN SCHEMA schema_name GRANT ALL ON TABLES TO role_name;