string('mileage')->nullable()->comment('里程'); $table->bigInteger('amount')->nullable()->comment('件数'); $table->string('inquire_tel')->nullable()->comment('查件电话'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('waybills',function (Blueprint $table){ $table->dropColumn('mileage'); $table->dropColumn('amount'); $table->dropColumn('inquire_tel'); }); } }