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

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

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

  disable_ddl_transaction!

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

  def down
    remove_concurrent_index_by_name :todos, INDEX_NAME
  end
end