increments('id'); $table->integer('user_id')->index(); $table->enum('type', ['avatar', 'topic'])->index(); $table->string('path')->index(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('images'); } }