Sha256: 9a3e7cd971851b9e03cca61e716498e06ca69b4dd94bfa19815d87107ec8dce5
Contents?: true
Size: 656 Bytes
Versions: 10
Compression:
Stored size: 656 Bytes
Contents
# SQLite version 3.x # gem 'activerecord-jdbcsqlite3-adapter' # # Configure Using Gemfile # gem 'activerecord-jdbcsqlite3-adapter' # default: &default adapter: sqlite3 development: <<: *default database: db/development.sqlite3 # 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: <<: *default database: db/test.sqlite3 production: adapter: mysql2 url: <%= ENV['DATABASE_URL'] %> encoding: utf8 pool: 5 uat: adapter: mysql2 url: <%= ENV['DATABASE_URL'] %> encoding: utf8 pool: 5
Version data entries
10 entries across 10 versions & 1 rubygems