dropIndex(['signature']); $table->dropIndex(['filename']); $table->dropIndex(['remove']); $table->dropIndex(['duplicate']); $table->dropIndex(['date_created','subsectime','model','make']); }); Schema::table('videos', function (Blueprint $table) { $table->dropIndex(['signature']); $table->dropIndex(['filename']); $table->dropIndex(['remove']); $table->dropIndex(['duplicate']); $table->dropIndex(['date_created','model','make']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('photo', function (Blueprint $table) { $table->index(['signature']); $table->index(['filename']); $table->index(['remove']); $table->index(['duplicate']); $table->index(['date_created','subsectime','model','make']); }); Schema::table('videos', function (Blueprint $table) { $table->index(['signature']); $table->index(['filename']); $table->index(['remove']); $table->index(['duplicate']); $table->index(['date_created','model','make']); }); } }