Skip to content

Commit d6eda44

Browse files
committed
update defaults
1 parent 57cc899 commit d6eda44

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

config/queue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
*/
8282

8383
'failed' => [
84-
'driver' => env('QUEUE_FAILED_DRIVER', 'database'),
84+
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
8585
'database' => env('DB_CONNECTION', 'mysql'),
8686
'table' => 'failed_jobs',
8787
],

database/migrations/2019_08_19_000000_create_failed_jobs_table.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public function up()
1515
{
1616
Schema::create('failed_jobs', function (Blueprint $table) {
1717
$table->id();
18+
$table->string('uuid')->unique();
1819
$table->text('connection');
1920
$table->text('queue');
2021
$table->longText('payload');

0 commit comments

Comments
 (0)