From 592b3936a3bc79bc11b716bec58a582081bdf0c0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 21 Jun 2018 11:11:30 -0500 Subject: [PATCH] update migration --- database/migrations/2014_10_12_000000_create_users_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php index 689cbeea..ec1eace1 100644 --- a/database/migrations/2014_10_12_000000_create_users_table.php +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -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();