Fix create db doc

This commit is contained in:
Quentin 2022-08-25 02:02:40 +02:00
parent ed82071223
commit ec597541c8
Signed by: quentin
GPG Key ID: E9602264D639FF68
1 changed files with 2 additions and 2 deletions

View File

@ -21,6 +21,6 @@ psql -h localhost -U postgres -W postgres
## 3. Create the binded users with LDAP in postgres + the database
```sql
CREATE USER johny;
CREATE DATABASE amazingapp OWNER johny;
CREATE USER sogo;
Create database sogodb with owner sogo encoding 'utf8' LC_COLLATE = 'C' LC_CTYPE = 'C' TEMPLATE template0;
```