Fix ALTER USER statement

This commit is contained in:
Eugen Rochko 2018-05-28 19:57:35 +02:00 committed by GitHub
parent 2163a6363d
commit 734d3a41b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -34,9 +34,9 @@ Here's how you might reset the password:
psql -p 5432 -U mastodon mastodon_production -w
Then:
Then (obviously, use a different password than the word "password"):
ALTER USER "mastodon" WITH PASSWORD 'password';
ALTER USER mastodon WITH PASSWORD 'password';
Then `\q` to quit.