Added quotation marks for postgresql parameters.

As a new, novice user, I ran into an issue where my postgresql
password contained special characters.  After a brief conversation
with DenSchub on #diaspora, it was noted that while the example
database configuration had quotes added for mysql, but not for
postgresql, and it was suggested this be improved.

closes #7875
This commit is contained in:
Luna Gloaming 2018-10-04 02:17:58 +00:00 committed by Dennis Schubert
parent 44452749bc
commit 45b7f0b119
No known key found for this signature in database
GPG key ID: 5A0304BEA7966D7E
2 changed files with 4 additions and 3 deletions

View file

@ -2,6 +2,7 @@
## Refactor
* Remove mention of deprecated `statistic.json` [#7867](https://github.com/diaspora/diaspora/pull/7867)
* Add quotes in `database.yml.example` to fields that may contain special characters [#7875](https://github.com/diaspora/diaspora/pull/7875)
## Bug fixes
* Add compatibility with macOS to `script/configure_bundler` [#7830](https://github.com/diaspora/diaspora/pull/7830)

View file

@ -1,9 +1,9 @@
postgresql: &postgresql
adapter: postgresql
host: localhost
host: "localhost"
port: 5432
username: postgres
password:
username: "postgres"
password: ""
encoding: unicode
mysql: &mysql