increments('id'); $table->string('name')->default('')->comment('名称'); $table->integer('coupon_cnt')->default('0')->comment('礼劵数'); $table->string('attire_ids')->default('')->comment('attire_ids'); $table->integer('attire_cnt')->default('0')->comment('装扮数量'); $table->integer('sort')->default('0')->comment('排序'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('gift_packs'); } }