decimal('delivery_fee')->nullable()->comment('送货费'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('carriers', function (Blueprint $table) { $table->dropColumn('delivery_fee'); }); } }