Configure queue database (#38)
All checks were successful
Deploy / deploy (push) Successful in 2m5s
All checks were successful
Deploy / deploy (push) Successful in 2m5s
Reviewed-on: #38
This commit is contained in:
parent
543a9599e0
commit
cbdf77054e
1 changed files with 8 additions and 0 deletions
|
@ -17,6 +17,10 @@ development:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/development_cache.sqlite3
|
database: db/development_cache.sqlite3
|
||||||
migrations_paths: db/cache_migrate
|
migrations_paths: db/cache_migrate
|
||||||
|
queue:
|
||||||
|
<<: *default
|
||||||
|
database: db/development_queue.sqlite3
|
||||||
|
migrations_paths: db/queue_migrate
|
||||||
|
|
||||||
|
|
||||||
# Warning: The database defined as "test" will be erased and
|
# Warning: The database defined as "test" will be erased and
|
||||||
|
@ -34,3 +38,7 @@ production:
|
||||||
<<: *default
|
<<: *default
|
||||||
database: db/production_cache.sqlite3
|
database: db/production_cache.sqlite3
|
||||||
migrations_paths: db/cache_migrate
|
migrations_paths: db/cache_migrate
|
||||||
|
queue:
|
||||||
|
<<: *default
|
||||||
|
database: db/production_queue.sqlite3
|
||||||
|
migrations_paths: db/queue_migrate
|
||||||
|
|
Loading…
Reference in a new issue