mirror of
https://github.com/ditatompel/insights.git
synced 2025-01-08 03:12:06 +07:00
chore: Missing \c
command
Missing `\c` command before executing `GRANT ALL ON SCHEMA public TO ...`
This commit is contained in:
parent
bbe2641dda
commit
039e9d442c
1 changed files with 1 additions and 0 deletions
|
@ -136,6 +136,7 @@ sudo -u postgres psql
|
|||
CREATE DATABASE <your_db_name> WITH ENCODING = 'UTF8';
|
||||
CREATE USER <your_misskey_db_user> WITH ENCRYPTED PASSWORD '<YOUR_PASSWORD>';
|
||||
GRANT ALL PRIVILEGES ON DATABASE <your_db_name> TO <your_misskey_db_user>;
|
||||
\c <your_db_name>
|
||||
GRANT ALL ON SCHEMA public TO <your_misskey_db_user>;
|
||||
\q
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue