bigIncrements('id'); $table->string("batch_id")->index()->nullable(); $table->string("code")->index(); $table->integer("owner_id")->nullable(); $table->enum("status",['处理中','未处理','已处理','取消','异常'])->default('未处理'); $table->string("wms_status"); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('orders'); } }