osem-fcy/config/database.yml

25 lines
551 B
YAML
Raw Normal View History

2019-07-18 12:49:50 +05:30
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
2019-07-18 12:49:50 +05:30
adapter: sqlite3
2013-01-07 09:04:09 +01:00
pool: 5
timeout: 5000
development:
<<: *default
2019-07-18 12:49:50 +05:30
database: db/development.sqlite3
2013-01-07 09:04:09 +01:00
# Warning: The database defined as "test" will be erased and
2019-07-18 12:49:50 +05:30
# re-generated from your development database when you run "rake".
2013-01-07 09:04:09 +01:00
# Do not set this db to the same as development or production.
test:
<<: *default
2019-07-18 12:49:50 +05:30
database: db/test.sqlite3
2013-01-07 09:04:09 +01:00
production:
<<: *default
2019-07-18 12:49:50 +05:30
database: db/production.sqlite3