string('order_code')->nullable()->comment('订单号'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('packages',function (Blueprint $table){ $table->dropColumn('order_code'); }); } }