Open queue.php
file in the config/
folder.
You can specify custom database and table name by editing/adding the batching
key:
return [
/* Default Queue Connection Name */
'default' => env('QUEUE_CONNECTION', 'sync'),
...
// ADD THIS SECTION
'batching' => [
'database' => '<custom_database>',
'table' => '<custom_job_batching>',
],
...
];
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…