Skip to content

Commit ffb2f4e

Browse files
Fixed bug on Job Batchs Table (#45263)
* Fixed bug on Batchs Jobs Table If the batch has more than 1000 errors the function Bus::findBatch() fails because the database cuts down the words when reach is limit and then the seventh argument returns null because can't be json decoded. * Update batches.stub Co-authored-by: Taylor Otwell <[email protected]>
1 parent 662f1bd commit ffb2f4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Queue/Console/stubs/batches.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ return new class extends Migration
1919
$table->integer('total_jobs');
2020
$table->integer('pending_jobs');
2121
$table->integer('failed_jobs');
22-
$table->text('failed_job_ids');
22+
$table->longText('failed_job_ids');
2323
$table->mediumText('options')->nullable();
2424
$table->integer('cancelled_at')->nullable();
2525
$table->integer('created_at');

0 commit comments

Comments
 (0)