diff --git a/Changelog.md b/Changelog.md index 00544ad2d..0e0ef8810 100644 --- a/Changelog.md +++ b/Changelog.md @@ -16,6 +16,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) diff --git a/config/database.yml.example b/config/database.yml.example index 8424342b6..31d608332 100644 --- a/config/database.yml.example +++ b/config/database.yml.example @@ -1,9 +1,9 @@ postgresql: &postgresql adapter: postgresql - host: localhost + host: "localhost" port: 5432 - username: postgres - password: + username: "postgres" + password: "" encoding: unicode mysql: &mysql