From ec597541c870cde19ed8bd0338263407127cbe4f Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Thu, 25 Aug 2022 02:02:40 +0200 Subject: [PATCH] Fix create db doc --- op_guide/stolon/create_database.md | 4 ++-- 1 file 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; ```