Move database storage #41
1 changed files with 7 additions and 7 deletions
|
@ -12,14 +12,14 @@ default: &default
|
||||||
development:
|
development:
|
||||||
primary:
|
primary:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/development.sqlite3
|
database: storage/development.sqlite3
|
||||||
cache:
|
cache:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/development_cache.sqlite3
|
database: storage/development_cache.sqlite3
|
||||||
migrations_paths: db/cache_migrate
|
migrations_paths: db/cache_migrate
|
||||||
queue:
|
queue:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/development_queue.sqlite3
|
database: storage/development_queue.sqlite3
|
||||||
migrations_paths: db/queue_migrate
|
migrations_paths: db/queue_migrate
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,17 +28,17 @@ development:
|
||||||
# Do not set this db to the same as development or production.
|
# Do not set this db to the same as development or production.
|
||||||
test:
|
test:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/test.sqlite3
|
database: storage/test.sqlite3
|
||||||
|
|
||||||
production:
|
production:
|
||||||
primary:
|
primary:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/production.sqlite3
|
database: storage/production.sqlite3
|
||||||
cache:
|
cache:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/production_cache.sqlite3
|
database: storage/production_cache.sqlite3
|
||||||
migrations_paths: db/cache_migrate
|
migrations_paths: db/cache_migrate
|
||||||
queue:
|
queue:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/production_queue.sqlite3
|
database: storage/production_queue.sqlite3
|
||||||
migrations_paths: db/queue_migrate
|
migrations_paths: db/queue_migrate
|
||||||
|
|
Loading…
Reference in a new issue