3523138a7a
* Requiring database adapter is now "require 'ar-extensions/import/<adapter_name>" so it won't conflict with previous versions of ar-extensions or other libraries extracted out of older ar-extensions, which "require 'ar-extensions'"
30 lines
396 B
YAML
30 lines
396 B
YAML
common: &common
|
|
username: root
|
|
password:
|
|
encoding: utf8
|
|
host: localhost
|
|
database: aroptests
|
|
|
|
mysql:
|
|
<<: *common
|
|
adapter: mysql
|
|
|
|
postgresql:
|
|
<<: *common
|
|
username: zdennis
|
|
adapter: postgresql
|
|
min_messages: warning
|
|
|
|
oracle:
|
|
<<: *common
|
|
adapter: oracle
|
|
min_messages: debug
|
|
|
|
sqlite:
|
|
adapter: sqlite
|
|
dbfile: test.db
|
|
|
|
sqlite3:
|
|
adapter: sqlite3
|
|
database: test.db
|