string("subjoin_fee")->nullable()->comment("附加费")->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('waybills', function (Blueprint $table) { $table->decimal("subjoin_fee",10,3)->default(0)->comment("附加费")->change(); }); } }