update migration

This commit is contained in:
Taylor Otwell 2018-06-21 11:11:30 -05:00
parent 4957bd5e0c
commit 592b3936a3
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ public function up()
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->boolean('email_verified')->default(false);
$table->string('password');
$table->rememberToken();
$table->timestamps();