Confgiure queue database
All checks were successful
Ruby CI / test (pull_request) Successful in 19s

This commit is contained in:
Andrew Tomaka 2024-09-09 21:17:33 -04:00
parent 543a9599e0
commit ca67078ce7
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -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