add ALTER DATABASE in install.md

This commit is contained in:
AntoineÐ 2023-12-08 11:55:25 +01:00 committed by Laura Hausmann
parent 8ed9ec53f9
commit a38caae060

View file

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