summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220913030552_add_tmp_index_system_note_metadata_on_attention_request_actions.rb
blob: 3418dabc0e92967c9d5eda5b45d348bfe896ec5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

  disable_ddl_transaction!

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

  def down
    remove_concurrent_index_by_name :system_note_metadata, INDEX_NAME
  end
end