1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/guides/code/getting_started/config/database.yml
Xavier Noria b700153507 Revert "let the connection pool of new applications have size 1 rather than 5"
Reason: Temporarily reverting this because it has uncovered an issue that
prevents Sam's test suite from passing.

This reverts commit 9b2c38b7bd.
2012-03-07 22:46:59 +01:00

25 lines
576 B
YAML

# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
development:
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: sqlite3
database: db/test.sqlite3
pool: 5
timeout: 5000
production:
adapter: sqlite3
database: db/production.sqlite3
pool: 5
timeout: 5000