dbfdg integer('user_id'); $table->string('token'); $table->timestamps(); }); Schema::table('users', function (Blueprint $table) { $table->boolean('is_email_verified')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users_verify'); } };