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