boolean('notify_approved')->default(true); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function ($table) { $table->dropColumn('notify_approved'); }); } }