id(); $table->enum("type",["商品名称","订单类型","承运商","店铺类型"])->index()->comment("特征类型"); $table->enum("logic",["包含","不包含","等于"])->index()->comment("逻辑"); $table->string("describe")->comment("特征"); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('features'); } }