Skip to content

Commit

Permalink
[5.8] use bigIncrements by default
Browse files Browse the repository at this point in the history
All new migrations will be using bigIncrements
laravel/framework#26472
  • Loading branch information
ankurk91 authored and gomasy committed Sep 17, 2019
1 parent ba544fd commit 6c5798e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CreateUsersTable extends Migration
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->bigIncrements('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
Expand Down

0 comments on commit 6c5798e

Please sign in to comment.