more modular database.yml.default
This commit is contained in:
parent
844a52fc52
commit
21aba2fe5e
1 changed files with 14 additions and 3 deletions
|
@ -1,10 +1,21 @@
|
||||||
development:
|
default: &default
|
||||||
min_messages: WARNING
|
min_messages: WARNING
|
||||||
adapter: postgresql
|
adapter: postgresql
|
||||||
host: 127.0.0.1
|
host: 127.0.0.1
|
||||||
port: 5432
|
port: 5432
|
||||||
encoding: unicode
|
encoding: unicode
|
||||||
database: metamap002_development
|
|
||||||
pool: 5
|
pool: 5
|
||||||
username: postgres
|
username: postgres
|
||||||
password: "3112"
|
password: "3112"
|
||||||
|
|
||||||
|
development:
|
||||||
|
<<: *default
|
||||||
|
database: metamap002_development
|
||||||
|
|
||||||
|
test:
|
||||||
|
<<: *default
|
||||||
|
database: metamap002_test
|
||||||
|
|
||||||
|
production:
|
||||||
|
<<: *default
|
||||||
|
database: metamap002_production
|
||||||
|
|
Loading…
Reference in a new issue