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

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

class RemoveTmpIndexSystemNoteMetadataOnAttentionRequestActions < Gitlab::Database::Migration[2.0]
  INDEX_NAME = "tmp_index_system_note_metadata_on_attention_request_actions"

  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :system_note_metadata, INDEX_NAME
  end

  def down
    add_concurrent_index :system_note_metadata, [:id],
      where: "action IN ('attention_requested', 'attention_request_removed')",
      name: INDEX_NAME
  end
end