I just created a database with an additional application
schema.
And for our Java Spring Boot applications I created a new role with the following SQL scripts for setting up the privileges:
CREATE USER app_role WITH ENCRYPTED PASSWORD '#########';
GRANT ALL ON SCHEMA application TO app_role;
Now my expectation was that I could only create and delete tables within the schema application
when logging in with this role.
However, I am also able to create and modify tables in the schema public
.
Are there any default privileges for the public
schema?
Why can I create tables in schemas I did not grant any privileges to?
alter default privileges ...
– a_horse_with_no_name