File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/Illuminate/Queue/Console/stubs Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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();
You can’t perform that action at this time.
0 commit comments