This commit is contained in:
Taylor Otwell 2018-06-21 15:32:22 -05:00
parent cd594395d9
commit 746a9e87a0
1 changed files with 1 additions and 1 deletions

View File

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