1
0
mirror of https://github.com/mastodon/documentation synced 2025-04-11 22:56:17 +02:00

Use single quotes for pg user password (#398)

Double quotes are not syntactically correct here.
This commit is contained in:
Patrick Figel 2017-09-19 16:17:15 +02:00 committed by wxcafé
parent 3a7c9c3921
commit e452628cae

View File

@ -36,7 +36,7 @@ Here's how you might reset the password:
Then:
ALTER USER "mastodon" WITH PASSWORD "password";
ALTER USER "mastodon" WITH PASSWORD 'password';
Then `\q` to quit.