29 lines
372 B
YAML
29 lines
372 B
YAML
|
common: &common
|
||
|
username: root
|
||
|
password:
|
||
|
encoding: utf8
|
||
|
host: localhost
|
||
|
database: aroptests
|
||
|
|
||
|
mysql:
|
||
|
<<: *common
|
||
|
adapter: mysql
|
||
|
|
||
|
postgres:
|
||
|
<<: *common
|
||
|
adapter: postgres
|
||
|
min_messages: warning
|
||
|
|
||
|
oracle:
|
||
|
<<: *common
|
||
|
adapter: oracle
|
||
|
min_messages: debug
|
||
|
|
||
|
sqlite:
|
||
|
adapter: sqlite
|
||
|
dbfile: test.db
|
||
|
|
||
|
sqlite3:
|
||
|
adapter: sqlite3
|
||
|
database: test.db
|