From 36090c437067d730749c81ef31abb87988c20794 Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Thu, 16 Nov 2023 10:35:00 +0100 Subject: [PATCH] feat: adjust doc/postgres-create-db.md --- doc/postgres-create-db.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/postgres-create-db.md b/doc/postgres-create-db.md index 6308117..d4bf014 100644 --- a/doc/postgres-create-db.md +++ b/doc/postgres-create-db.md @@ -2,8 +2,6 @@ * create a new database `database name` and grant privileges to `user name` ``` -sudo -u postgres psql CREATE DATABASE ; -GRANT ALL PRIVILEGES ON DATABASE to ; -\q +GRANT ALL PRIVILEGES ON DATABASE TO ; ```