Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20221116113323_add_index_on_team_id_and_chat_id.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a7bcf48d802d1a9fbb45b1440ee088bc237d5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddIndexOnTeamIdAndChatId < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  INDEX_NAME = 'index_chat_names_on_team_id_and_chat_id'

  def up
    add_concurrent_index(:chat_names, [:team_id, :chat_id], name: INDEX_NAME)
  end

  def down
    remove_concurrent_index_by_name :chat_names, INDEX_NAME
  end
end