diff --git a/docs/apps/postgres.md b/docs/apps/postgres.md index bbee5aa2a9..ab31b252ae 100644 --- a/docs/apps/postgres.md +++ b/docs/apps/postgres.md @@ -22,13 +22,13 @@ Strongly consider also installing [pgAdmin](https://github.com/GhostWriters/Dock ### Create user -``` +``` sql CREATE USER newuser WITH PASSWORD 'password123'; ``` ### Make user a superuser -``` +``` sql CREATE USER newadmin WITH PASSWORD 'password123'; ALTER USER newadmin WITH SUPERUSER; ```