Changed development database to sqlite3

This commit is contained in:
2013-01-21 17:30:55 -05:00
parent 40ff30c822
commit b83721ed56
3 changed files with 17 additions and 12 deletions

View File

@@ -1,20 +1,19 @@
# SQLite version 3.x
# gem install sqlite:w3
development:
adapter: mysql2
database: forum/dev
host: localhost
username: forum
password: forum
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: mysql2
database: forum/test
host: localhost
username: forum
password: forum
adapter: sqlite3
database: db/test.sqlite3
pool: 5
timeout: 5000
production:
adapter: mysql2
database: forum