diff --git a/config/queue.php b/config/queue.php index 56dbccbe..0570cef8 100644 --- a/config/queue.php +++ b/config/queue.php @@ -69,6 +69,23 @@ return [ ], + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'job_batches', + ], + + /* |-------------------------------------------------------------------------- | Failed Queue Jobs