Skip to content

Commit

Permalink
Rename active record adaptor
Browse files Browse the repository at this point in the history
  • Loading branch information
sverhoeven committed Jul 27, 2018
1 parent f979bc8 commit c32b1e1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions config/database.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,49 @@
production:
adapter: postgres
adapter: postgresql
encoding: unicode
host: localhost
port: 5432
direct_port: 5432
database: carto_db_production
username: postgres
password:
conn_validator_timeout: 900
prepared_statements: false

staging:
adapter: postgres
adapter: postgresql
encoding: unicode
host: localhost
port: 5432
direct_port: 5432
database: carto_db_staging
username: postgres
password:
conn_validator_timeout: 900
prepared_statements: false

development:
adapter: postgres
adapter: postgresql
encoding: unicode
host: localhost
port: 5432
direct_port: 5432
database: carto_db_development
username: postgres
password:
conn_validator_timeout: 900
pool: 50
prepared_statements: false

test:
adapter: postgres
adapter: postgresql
encoding: unicode
database: carto_db_test
host: localhost
port: 5432
direct_port: 5432
username: postgres
password:
conn_validator_timeout: -1
prepared_statements: false

0 comments on commit c32b1e1

Please sign in to comment.