NRuby
25 строк · 594.0 Байт
1# SQLite version 3.x
2# gem install sqlite3
3#
4# Ensure the SQLite 3 gem is defined in your Gemfile
5# gem 'sqlite3'
6#
7default: &default8adapter: sqlite39pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>10timeout: 500011
12development:13<<: *default14database: db/development.sqlite315
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.
19test:20<<: *default21database: db/test.sqlite322
23production:24<<: *default25database: db/production.sqlite326