development:
adapter: postgresql
host: localhost
database: myapp
pool: 5
timeout: 5000
username: postgres
password: postgres
port: 5432
test: &test
adapter: postgresql
host: localhost
database: myapp-test
pool: 5
timeout: 5000
username: postgres
password: postgres
port: 5432
production:
adapter: sqlite3
database: db/production.sqlite3
pool: 5
timeout: 5000
selenium:
adapter: postgresql
host: localhost
database: myapp-selenium
pool: 5
timeout: 5000
username: postgres
password: postgres
port: 5432
cucumber:
<<: *test
我的数据库值已更新,但未同时获取,我需要更改生产配置吗?