Skip to content

Commit

Permalink
change increment to bigIncrements
Browse files Browse the repository at this point in the history
  • Loading branch information
anandiamy authored Jun 21, 2019
1 parent 18f34e5 commit 8a66cf5
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 8a66cf5

Please sign in to comment.