config/database.yml.postgresql in iqvoc-4.12.0 vs config/database.yml.postgresql in iqvoc-4.12.1
- old
+ new
@@ -13,11 +13,12 @@
pool: 5
username: root
password:
production:
- adapter: postgresql
+ adapter: <%= ENV['DB_ADAPTER'] ||= 'postgresql' %>
encoding: unicode
- database: iqvoc_production
- pool: 5
- username: root
- password:
+ database: <%= ENV["DB_NAME"] %>
+ pool: 20
+ username: <%= ENV["DB_USER"] %>
+ password: <%= ENV["DB_PW"] %>
+ host: <%= ENV["DB_HOST"] %>