diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-06-30 12:37:04 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-06-30 12:37:04 +0100 |
commit | 24cb74239c6a79be8c392265c9d7df5ad901a11d (patch) | |
tree | ebf8a2fd3178704b9f9e3a506bea7d9b05ccbf8c | |
parent | 1e438bcfad39702674e559f6a5a7d1e9d5c36abb (diff) | |
parent | b7b2a57f89d10735bbbff876a781c55336d1e0bd (diff) |
Merge branch 'rails-3-develop' of ssh://git.mysociety.org/data/git/public/alaveteli into rails-3-develop
-rw-r--r-- | config/database.yml-example | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/config/database.yml-example b/config/database.yml-example index e48577f23..126e5a264 100644 --- a/config/database.yml-example +++ b/config/database.yml-example @@ -3,7 +3,8 @@ development: adapter: postgresql - database: foi_development + template: template_utf8 + database: alaveteli_development username: <username> password: <password> host: localhost @@ -14,7 +15,8 @@ development: # Do not set this db to the same as development or production. test: adapter: postgresql - database: foi_test + template: template_utf8 + database: alaveteli_test username: <username> password: <password> host: localhost @@ -24,9 +26,9 @@ test: production: adapter: postgresql - database: foi_production + template: template_utf8 + database: alaveteli_production username: <username> password: <password> host: localhost port: 5432 - |