Sha256: 44f19b429c19fd399c13275b22f5b43f233cff984b3f527e7f707279dcb0369d
Contents?: true
Size: 767 Bytes
Versions: 25
Compression:
Stored size: 767 Bytes
Contents
# 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 development: adapter: postgresql encoding: utf8 pool: 5 database: dbview_cti timeout: 5000 username: cti password: cti # 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: postgresql encoding: utf8 pool: 5 database: dbview_cti_test timeout: 5000 username: cti password: cti production: adapter: sqlite3 database: db/production.sqlite3 pool: 5 timeout: 5000
Version data entries
25 entries across 13 versions & 1 rubygems