diff --git a/doc/postgres-create-user.md b/doc/postgres-create-user.md index 0e15ee8..6dc47c2 100644 --- a/doc/postgres-create-user.md +++ b/doc/postgres-create-user.md @@ -2,7 +2,7 @@ * create a database user called `user name` with password `key` ``` -CREATE USER `user name` with encrypted password 'key'; +CREATE USER with encrypted password 'key'; ``` * OPTION: gant user `user name` access to database `database name` diff --git a/doc/postgres.md b/doc/postgres.md index ee1f353..bbc63fb 100644 --- a/doc/postgres.md +++ b/doc/postgres.md @@ -27,10 +27,6 @@ sudo systemctl restart postgresql systemctl status postgresql ``` -* when needed, create a database like [this](./postgres-create-db.md) - -* when needed, create a user like [this](./postgres-create-user.md) - TODO: move the following description to dedicated setup files # Allow Remote Connections