43 lines
956 B
YAML
43 lines
956 B
YAML
default: &default
|
|
adapter: sqlite3
|
|
pool: 5
|
|
timeout: 5000
|
|
|
|
development:
|
|
primary:
|
|
<<: *default
|
|
database: storage/development.sqlite3
|
|
schema_dump: schema_sqlite.rb
|
|
cable:
|
|
<<: *default
|
|
database: storage/development_cable.sqlite3
|
|
migrations_paths: db/cable_migrate
|
|
|
|
test:
|
|
primary:
|
|
<<: *default
|
|
database: storage/test.sqlite3
|
|
schema_dump: schema_sqlite.rb
|
|
cable:
|
|
<<: *default
|
|
database: storage/test_cable.sqlite3
|
|
migrations_paths: db/cable_migrate
|
|
|
|
production:
|
|
primary:
|
|
<<: *default
|
|
database: storage/production.sqlite3
|
|
schema_dump: schema_sqlite.rb
|
|
cable:
|
|
<<: *default
|
|
database: storage/production_cable.sqlite3
|
|
migrations_paths: db/cable_migrate
|
|
cache:
|
|
<<: *default
|
|
database: storage/production_cache.sqlite3
|
|
migrations_paths: db/cache_migrate
|
|
queue:
|
|
<<: *default
|
|
database: storage/production_queue.sqlite3
|
|
migrations_paths: db/queue_migrate
|