diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-06-26 11:57:29 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-06-26 11:57:29 +0100 |
commit | ba10d2ee3c2871d6e7e05be621dd505ae52c123b (patch) | |
tree | a5348727b1a385dc9dd57b48e786fec11c295e5e | |
parent | bce4b56ef9d0c516695b7bc5ef66f7a92f4415f6 (diff) |
Rename example databases to match documentation
Renamed with alaveteli_ prefix rather than foi_ in 3cd30c9 so keep the
example consistent.
-rw-r--r-- | config/database.yml-example | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config/database.yml-example b/config/database.yml-example index e48577f23..6d06110b0 100644 --- a/config/database.yml-example +++ b/config/database.yml-example @@ -3,7 +3,7 @@ development: adapter: postgresql - database: foi_development + database: alaveteli_development username: <username> password: <password> host: localhost @@ -14,7 +14,7 @@ development: # Do not set this db to the same as development or production. test: adapter: postgresql - database: foi_test + database: alaveteli_test username: <username> password: <password> host: localhost @@ -24,9 +24,8 @@ test: production: adapter: postgresql - database: foi_production + database: alaveteli_production username: <username> password: <password> host: localhost port: 5432 - |