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

This commit is contained in:
dancingCycle 2023-11-16 10:33:08 +01:00
parent cabf42079a
commit 54415cfb26
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
# Create Database with Postgres
* create a new database <database name> and grant privileges to <user name>
* create a new database `database name` and grant privileges to `user name`
```
sudo -u postgres psql -W
sudo -u postgres psql
CREATE DATABASE <database name>;
GRANT ALL PRIVILEGES ON DATABASE <database name> to <user name>;
\q