Yes. Edit this file configqueue.php
:
<?php
return [
....
'connections' => [
....
'database' => [
'driver' => 'database',
'table' => 'jobs', <------ Edit this to something else
'queue' => 'default',
'retry_after' => 90,
],
....
],
....
];
Change the table
name to other value, and it should pick up by the TableCommand
. Check out IlluminateQueueConsoleTableCommand
on how it uses this value. It's pretty much straightforward :)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…