boolean('is_activated'); $table->string('activation_token')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('is_activated'); $table->dropColumn('activation_token'); }); } }