feat: adjust doc/postgres-create-db.md

This commit is contained in:
dancingCycle 2023-11-20 10:33:13 +01:00
parent 6fe134c5ce
commit 7ab991bf48
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@
* create a new database `database name` and grant privileges to `user name`
```
CREATE DATABASE <database name>;
GRANT ALL PRIVILEGES ON DATABASE <database name> TO <user name>;
CREATE DATABASE <database name> OWNER <user name>;
```