Skip to content

Commit

Permalink
Merge pull request #7 from gdpa/hotfix/laravel58support
Browse files Browse the repository at this point in the history
Add support for laravel 5.8 default bigIncrement
  • Loading branch information
mpociot authored Oct 6, 2019
2 parents e7ff37c + f755840 commit 7b5fca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_comments_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class CreateCommentsTable extends Migration
$table->morphs('commentable');
$table->text('comment');
$table->boolean('is_approved')->default(false);
$table->unsignedInteger('user_id')->nullable();
$table->unsignedBigInteger('user_id')->nullable();
$table->timestamps();
});
}
Expand Down

0 comments on commit 7b5fca3

Please sign in to comment.