Skip to content

Commit

Permalink
added language to code block in postgres.md
Browse files Browse the repository at this point in the history
  • Loading branch information
smilerz authored Nov 10, 2023
1 parent a8e3598 commit 04197d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/apps/postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
```
Expand Down

0 comments on commit 04197d4

Please sign in to comment.