increments('id'); $table->integer('used_id')->default(0)->index('used_id')->comment('闲置商品ID'); $table->string('used_imgs')->comment('闲置商品照片'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('used_imgs'); } }