Rename active record adaptor

This commit is contained in:
Stefan Verhoeven 2018-07-27 09:11:15 +02:00
parent f979bc8e84
commit c32b1e1cd2

View File

@ -1,40 +1,49 @@
production: production:
adapter: postgres adapter: postgresql
encoding: unicode encoding: unicode
host: localhost host: localhost
port: 5432 port: 5432
direct_port: 5432
database: carto_db_production database: carto_db_production
username: postgres username: postgres
password: password:
conn_validator_timeout: 900 conn_validator_timeout: 900
prepared_statements: false
staging: staging:
adapter: postgres adapter: postgresql
encoding: unicode encoding: unicode
host: localhost host: localhost
port: 5432 port: 5432
direct_port: 5432
database: carto_db_staging database: carto_db_staging
username: postgres username: postgres
password: password:
conn_validator_timeout: 900 conn_validator_timeout: 900
prepared_statements: false
development: development:
adapter: postgres adapter: postgresql
encoding: unicode encoding: unicode
host: localhost host: localhost
port: 5432 port: 5432
direct_port: 5432
database: carto_db_development database: carto_db_development
username: postgres username: postgres
password: password:
conn_validator_timeout: 900 conn_validator_timeout: 900
pool: 50
prepared_statements: false
test: test:
adapter: postgres adapter: postgresql
encoding: unicode encoding: unicode
database: carto_db_test database: carto_db_test
host: localhost host: localhost
port: 5432 port: 5432
direct_port: 5432
username: postgres username: postgres
password: password:
conn_validator_timeout: -1 conn_validator_timeout: -1
prepared_statements: false