diff --git a/config/queue.php b/config/queue.php index c5029a5baa..bdbe7615f8 100644 --- a/config/queue.php +++ b/config/queue.php @@ -73,6 +73,22 @@ ], + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. Uses the same database connection as the app + | so we do not fall back to Laravel's default 'sqlite'. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'processmaker'), + 'table' => 'job_batches', + ], + /* |-------------------------------------------------------------------------- | Failed Queue Jobs