Skip to content

Commit

Permalink
[5.4] Fix size increment (#18300)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ari Kaiy authored and taylorotwell committed Mar 10, 2017
1 parent 4483e70 commit b5e8c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Console/stubs/failed_jobs.stub
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Create{{tableClassName}}Table extends Migration
public function up()
{
Schema::create('{{table}}', function (Blueprint $table) {
$table->increments('id');
$table->bigIncrements('id');
$table->text('connection');
$table->text('queue');
$table->longText('payload');
Expand Down

0 comments on commit b5e8c73

Please sign in to comment.