increments('id'); $table->integer('account_id')->default('0')->comment('账户ID'); $table->integer('attire_id')->default('0')->comment('装扮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('curr_save')->default('0')->comment('当前保存'); $table->integer('curr_upload')->default('0')->comment('当前上传'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('fitting_rooms'); } }