Skip to content
Snippets Groups Projects
Commit 518fb73a authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '934-extension' into 'master'

Fix #934: Documented how to create DB extension by hand in case of permission...

See merge request funkwhale/funkwhale!926
parents c8218c80 49f8fba2
No related branches found
No related tags found
No related merge requests found
Documented how to create DB extension by hand in case of permission error during migrations (#934)
......@@ -192,6 +192,12 @@ match what is described in :doc:`/installation/debian`:
# restart the services
sudo systemctl start funkwhale.target
.. note::
If you see a PermissionError when running the ``migrate`` command, try running the following commands by hand, and relaunch the migrations::
sudo -u postgres psql funkwhale -c 'CREATE EXTENSION IF NOT EXISTS "citext";'
sudo -u postgres psql funkwhale -c 'CREATE EXTENSION IF NOT EXISTS "unaccent";'
.. warning::
You may sometimes get the following warning while applying migrations::
......
......@@ -66,6 +66,7 @@ for Funkwhale to work properly:
.. code-block:: shell
sudo -u postgres psql funkwhale -c 'CREATE EXTENSION "unaccent";'
sudo -u postgres psql funkwhale -c 'CREATE EXTENSION "citext";'
Cache setup (Redis)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment