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

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

class IndexSystemNoteMetadataOnIdForRelateAndUnrelateActions < Gitlab::Database::Migration[2.1]
  INDEX_NAME = 'tmp_index_for_backfilling_resource_link_events'
  CONDITION = "action='relate_to_parent' OR action='unrelate_from_parent'"

  disable_ddl_transaction!

  def up
    # Temporary index to be removed in https://gitlab.com/gitlab-org/gitlab/-/issues/408797
    add_concurrent_index :system_note_metadata, :id,
      where: CONDITION,
      name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :system_note_metadata, INDEX_NAME
  end
end