boolean('is_active')->default(1)->after('is_partial'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('contacts', function ($table) { $table->dropColumn('is_active'); }); } }