From f0dff9de31158a8060363a49152b1a145b3a1741 Mon Sep 17 00:00:00 2001 From: Eric Paulsen Date: Tue, 26 Jul 2022 17:30:57 -0500 Subject: [PATCH] fix: coderuser references --- docs/install/postgres.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install/postgres.md b/docs/install/postgres.md index 39ee8d52d8eb6..cc64c67bf2351 100644 --- a/docs/install/postgres.md +++ b/docs/install/postgres.md @@ -60,13 +60,13 @@ documentation](https://www.postgresql.org/docs/current/tutorial-start.html). 1. Create a database called `coder` and assign the owner: ```console - create database coder owner coder; + create database coder owner coderuser; ``` 1. Set the password for `coderuser`: ```console - \password coder # enter password when prompted + \password coderuser # enter password when prompted ``` 1. Assign rights to the database to your user: