Skip to content

Commit 87f258b

Browse files
committed
Merge pull request #8117 from ffsantos92/ffsantos92-patch-1
Use LONGTEXT instead of TEXT
2 parents 414af64 + 08f2729 commit 87f258b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CreateFailedJobsTable extends Migration
1616
$table->increments('id');
1717
$table->text('connection');
1818
$table->text('queue');
19-
$table->text('payload');
19+
$table->longText('payload');
2020
$table->timestamp('failed_at');
2121
});
2222
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class CreateJobsTable extends Migration
1515
Schema::create('jobs', function (Blueprint $table) {
1616
$table->bigIncrements('id');
1717
$table->string('queue');
18-
$table->text('payload');
18+
$table->longText('payload');
1919
$table->tinyInteger('attempts')->unsigned();
2020
$table->tinyInteger('reserved')->unsigned();
2121
$table->unsignedInteger('reserved_at')->nullable();

0 commit comments

Comments
 (0)