summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLibravatar Ember <me@ember-is.gay>2025-04-24 19:00:20 +1000
committerLibravatar GitHub <noreply@github.com>2025-04-24 11:00:20 +0200
commit768ee70b881a07cae4b2a6a46869e306df08ef14 (patch)
tree07a44f138953d9632fa5b15fcc690976c66edf8f /docs
parent[chore/frontend] Update skulk, caniuse (#4044) (diff)
downloadgotosocial-768ee70b881a07cae4b2a6a46869e306df08ef14.tar.xz
[docs] Mention where to run the command to grant CREATE permissions (#4050)
Diffstat (limited to 'docs')
-rw-r--r--docs/configuration/database.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/configuration/database.md b/docs/configuration/database.md
index 4179f846d..4f3785b37 100644
--- a/docs/configuration/database.md
+++ b/docs/configuration/database.md
@@ -42,7 +42,7 @@ create user gotosocial with password 'some_really_good_password';
grant all privileges on database gotosocial to gotosocial;
```
-If you start using Postgres after 14, or you encounter `error executing command: error creating dbservice: db migration error: ERROR: permission denied for schema public`, you should grant `CREATE` permission to your db user:
+If you start using Postgres after 14, or you encounter `error executing command: error creating dbservice: db migration error: ERROR: permission denied for schema public`, you should grant `CREATE` permission to your db user *(This **must** be run in a postgres shell that's connected to the gotosocial database)*:
```psql
GRANT CREATE ON SCHEMA public TO gotosocial;