1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# This file contains the databases that the test suite will be run against if you run rake:test:adapters or set the
# environment variable ADAPTER (use commas to test multiple adapters). If you want, you can add your own adapter below
# and it will be added to the test suite.
sqlite3:
adapter: seamless_database_pool
database: test.sqlite3
prepared_statements: false
master:
adapter: sqlite3
pool_weight: 0
read_pool:
- adapter: read_only
real_adapter: sqlite3
postgresql:
adapter: seamless_database_pool
database: seamless_database_pool_test
prepared_statements: false
username: postgres
password: postgres
master:
adapter: postgresql
pool_weight: 0
read_pool:
- adapter: read_only
real_adapter: postgresql
mysql:
adapter: seamless_database_pool
database: seamless_database_pool_test
prepared_statements: false
username: root
password:
master:
adapter: mysql2
pool_weight: 0
read_pool:
- adapter: read_only
real_adapter: mysql2
|