Keep test/database.yml out of the project so others can keep their own around
This commit is contained in:
parent
b1c73ffac2
commit
0bbc24ba38
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -21,3 +21,4 @@ pkg
|
|||
## PROJECT::SPECIFIC
|
||||
log/*.log
|
||||
test.db
|
||||
test/database.yml
|
||||
|
|
|
@ -1,33 +0,0 @@
|
|||
common: &common
|
||||
username: root
|
||||
password:
|
||||
encoding: utf8
|
||||
host: localhost
|
||||
database: activerecord_import_test
|
||||
|
||||
mysql:
|
||||
<<: *common
|
||||
adapter: mysql
|
||||
|
||||
mysql2:
|
||||
<<: *common
|
||||
adapter: mysql2
|
||||
|
||||
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
|
Loading…
Reference in a new issue