From 7fa99750d92bbf42230098e3ee71c3a43debbbc5 Mon Sep 17 00:00:00 2001
From: JocelynDelalande <jocelyn@crapouillou.net>
Date: Fri, 8 Jun 2018 23:44:08 +0000
Subject: [PATCH] Mention the database name to create psql  extension.

Seems that the extensions are per-database.
Without that tweak, the install will fail at django migrations step, yelling for insuficient rights to install the accent extension itself.
---
 docs/installation/external_dependencies.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/installation/external_dependencies.rst b/docs/installation/external_dependencies.rst
index 5d66dd60..adfb90e7 100644
--- a/docs/installation/external_dependencies.rst
+++ b/docs/installation/external_dependencies.rst
@@ -56,7 +56,7 @@ for funkwhale to work properly:
 
 .. code-block:: shell
 
-    sudo -u postgres psql -c 'CREATE EXTENSION "unaccent";'
+    sudo -u postgres psql funkwhale -c 'CREATE EXTENSION "unaccent";'
 
 
 Cache setup (Redis)
-- 
GitLab