Merge pull request #4946 from ankurk91/patch/big-int

[5.8] use bigIncrements by default
This commit is contained in:
Taylor Otwell 2019-02-24 18:52:42 -06:00 committed by GitHub
commit b681370492
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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->timestamp('email_verified_at')->nullable();