Skip to content
Snippets Groups Projects
Commit 6496904a authored by Sander de Snoo's avatar Sander de Snoo
Browse files

Added GRANT CREATE ON SCHEMA public for Postgresql 15

parent bf070878
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,8 @@ Steps:
* CREATE USER myusername WITH PASSWORD 'mypasswd';
* CREATE DATABASE 'mydbname';
* GRANT ALL PRIVILEGES ON DATABASE 'mydbname' TO 'myusername';
* GRANT CREATE ON SCHEMA public TO 'myusername'
Note: The last line is required since release 15 of Postgresql.
In case you are running along with a server set up, it is recommended to have 'mydbname' to be the same as the one on the server.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment