From 54415cfb262e21d74b87cccaaede3ef70137a032 Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Thu, 16 Nov 2023 10:33:08 +0100 Subject: [PATCH] feat: adjust doc/postgres-create-db.md --- doc/postgres-create-db.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/postgres-create-db.md b/doc/postgres-create-db.md index 57467c6..6308117 100644 --- a/doc/postgres-create-db.md +++ b/doc/postgres-create-db.md @@ -1,8 +1,8 @@ # Create Database with Postgres -* create a new database and grant privileges to +* create a new database `database name` and grant privileges to `user name` ``` -sudo -u postgres psql -W +sudo -u postgres psql CREATE DATABASE ; GRANT ALL PRIVILEGES ON DATABASE to ; \q