Use single quotes for pg user password (#398)
Double quotes are not syntactically correct here.
This commit is contained in:
parent
3a7c9c3921
commit
e452628cae
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue