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

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

class DropTmpIndexTodosAttentionRequestActionIdx < Gitlab::Database::Migration[2.0]
  INDEX_NAME = "tmp_index_todos_attention_request_action"
  ATTENTION_REQUESTED = 10

  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :todos, INDEX_NAME
  end

  def down
    add_concurrent_index :todos, [:id],
      where: "action = #{ATTENTION_REQUESTED}",
      name: INDEX_NAME
  end
end