summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221226154458_drop_index_on_chat_names_on_integration_id_and_team_id_and_chat_id.rb
blob: d5aeb704983bc726afd642b4a9f5d47e337156da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class DropIndexOnChatNamesOnIntegrationIdAndTeamIdAndChatId < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  INDEX_NAME = 'index_chat_names_on_integration_id_and_team_id_and_chat_id'

  def up
    remove_concurrent_index_by_name(:chat_names, INDEX_NAME)
  end

  def down
    add_concurrent_index(:chat_names, [:integration_id, :team_id, :chat_id], name: INDEX_NAME, unique: true)
  end
end