Remove constraint on LC_COLLATE and LC_CTYPE

Which will fail if the system does not contains this locale.
This commit is contained in:
JocelynDelalande 2018-06-08 23:09:46 +00:00
parent 7988363352
commit 938aa2c8f1
1 changed files with 1 additions and 3 deletions

View File

@ -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;