string('type')->default('normal'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('taxes', function ($table) { $table->dropColumn([ 'type', ]); }); } }