From a38caae0607255cef8f534f5cadbd0ff21e5dcc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=C3=90?= Date: Fri, 8 Dec 2023 11:55:25 +0100 Subject: [PATCH] =?UTF-8?q?add=20ALTER=C2=A0DATABASE=20in=20install.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/install.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/install.md b/docs/install.md index b738e7090..5672ee31a 100644 --- a/docs/install.md +++ b/docs/install.md @@ -77,6 +77,7 @@ sudo -u postgres psql create database iceshrimp with encoding = 'UTF8'; create user iceshrimp with encrypted password '{YOUR_PASSWORD}'; grant all privileges on database iceshrimp to iceshrimp; +alter database iceshrimp owner to iceshrimp; \q ```