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