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

class AddTmpIndexUserCalloutsOnAttentionRequestFeatureNames < Gitlab::Database::Migration[2.0]
  INDEX_NAME = "tmp_index_user_callouts_on_attention_request_feature_names"
  ATTENTION_REQUEST_CALLOUTS = [47, 48]

  disable_ddl_transaction!

  def up
    add_concurrent_index :user_callouts, [:id],
      where: "feature_name IN (#{ATTENTION_REQUEST_CALLOUTS.join(',')})",
      name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :user_callouts, INDEX_NAME
  end
end