increments('id'); $table->string('name')->default('')->comment('名称'); $table->string('cate')->default('')->comment('类别'); $table->string('img_1')->default('')->comment('正面图片'); $table->string('img_2')->default('')->comment('背面图片'); $table->integer('retrieve_pasters')->default('0')->comment('回收贴纸数'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('attires'); } }