Sha256: a6db6ada1437eadc21f4129ee8b8f62438751033a148c23ddcb0c159e98018b0
Contents?: true
Size: 1.05 KB
Versions: 5
Compression:
Stored size: 1.05 KB
Contents
# SQLite version 3.x # gem install sqlite3 # # Ensure the SQLite 3 gem is defined in your Gemfile # gem 'sqlite3' # ====================================================================== # Adapters supported # ====================================================================== mysql2: adapter: mysql2 database: mysql2_test user: root password: D3s4rr0ll0$. pool: 5 timeout: 5000 encoding: utf8 postgresql: adapter: postgresql database: postgresql_test pool: 5 timeout: 5000 encoding: utf8 sqlite3: 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. development: adapter: sqlite3 database: db/development.sqlite3 pool: 5 timeout: 5000 test: adapter: sqlite3 database: db/test.sqlite3 pool: 5 timeout: 5000 production: adapter: sqlite3 database: db/production.sqlite3 pool: 5 timeout: 5000
Version data entries
5 entries across 5 versions & 1 rubygems