diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-25 02:02:40 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-25 02:02:40 +0200 |
commit | ec597541c870cde19ed8bd0338263407127cbe4f (patch) | |
tree | d2b24249cd669ed8d3b5f6279d1c2f389396484e | |
parent | ed82071223a87078bf34ea99c03c8148a54ccb11 (diff) | |
download | infrastructure-ec597541c870cde19ed8bd0338263407127cbe4f.tar.gz infrastructure-ec597541c870cde19ed8bd0338263407127cbe4f.zip |
Fix create db doc
-rw-r--r-- | op_guide/stolon/create_database.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/op_guide/stolon/create_database.md b/op_guide/stolon/create_database.md index fb3bdd9..96999ef 100644 --- a/op_guide/stolon/create_database.md +++ b/op_guide/stolon/create_database.md @@ -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; ``` |