From 938aa2c8f142cb35fe7180dd1df104fe9138be97 Mon Sep 17 00:00:00 2001
From: JocelynDelalande <jocelyn@crapouillou.net>
Date: Fri, 8 Jun 2018 23:09:46 +0000
Subject: [PATCH] Remove constraint on LC_COLLATE and LC_CTYPE

Which will fail if the system does not contains this locale.
---
 docs/installation/external_dependencies.rst | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/docs/installation/external_dependencies.rst b/docs/installation/external_dependencies.rst
index df9282797d..5d66dd601a 100644
--- a/docs/installation/external_dependencies.rst
+++ b/docs/installation/external_dependencies.rst
@@ -33,9 +33,7 @@ Create the project database and user:
 .. code-block:: shell
 
     CREATE DATABASE "funkwhale"
-      WITH ENCODING 'utf8'
-      LC_COLLATE = 'en_US.utf8'
-      LC_CTYPE = 'en_US.utf8';
+      WITH ENCODING 'utf8';
     CREATE USER funkwhale;
     GRANT ALL PRIVILEGES ON DATABASE funkwhale TO funkwhale;
 
-- 
GitLab