Hide public communty.
[ecs.git] / config / database.yml
blob1c1a37ca8df8dafd501066d54086ca5693f4b204
1 # SQLite version 3.x
2 #   gem install sqlite3
4 #   Ensure the SQLite 3 gem is defined in your Gemfile
5 #   gem 'sqlite3'
7 default: &default
8   adapter: sqlite3
9   pool: 5
10   timeout: 5000
12 development:
13   <<: *default
14   database: db/development.sqlite3
16 # Warning: The database defined as "test" will be erased and
17 # re-generated from your development database when you run "rake".
18 # Do not set this db to the same as development or production.
19 test:
20   <<: *default
21   database: db/test.sqlite3
23 production:
24   <<: *default
25   database: db/production.sqlite3