Sha256: 884fa59e0e6842474065ef3388b9de87fe13302703c52b171c72f437ebe23bfe

Contents?: true

Size: 1.25 KB

Versions: 8

Compression:

Stored size: 1.25 KB

Contents

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
#
default: &default
  adapter: sqlite3
  pool: 5
  timeout: 5000

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:
  <<: *default
  database: db/production.sqlite3

test_mysql:
  adapter: mysql2
  database: fake_mysql_db
  username: fake_mysql_usr
  password: fake_mysql_password
  host: fake_mysql_host
  port: 3306

test_postgresql:
  adapter: postgresql
  encoding: unicode
  database: fake_postgresql_db
  username: fake_postgresql_user
  password: fake_postgresql_password
  host: fake_postgresql_host
  port: 5432

second_test_mysql:
  adapter: mysql2
  database: other_mysql_db
  username: other_mysql_usr
  password: other_mysql_password
  host: other_mysql_host
  port: 3306

second_test_postgresql:
  adapter: postgresql
  encoding: unicode
  database: other_postgresql_db
  username: other_postgresql_user
  password: other_postgresql_password
  host: fake_postgresql_host
  port: 5432

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
db-clone-1.1.1 spec/dummy/config/database.yml
db-clone-1.1.0 spec/dummy/config/database.yml
db-clone-1.0.5 spec/dummy/config/database.yml
db-clone-1.0.4 spec/dummy/config/database.yml
db-clone-1.0.3 spec/dummy/config/database.yml
db-clone-1.0.2 spec/dummy/config/database.yml
db-clone-1.0.1 spec/dummy/config/database.yml
db-clone-1.0.0 spec/dummy/config/database.yml