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

20230605085936_add_new_index_to_vsa_issue_stage_events.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75f28f35fe2374be34335bdad5a67f4ff3076256 (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 AddNewIndexToVsaIssueStageEvents < Gitlab::Database::Migration[2.1]
  include Gitlab::Database::PartitioningMigrationHelpers

  TABLE_NAME = :analytics_cycle_analytics_issue_stage_events
  COLUMN_NAMES = %I[stage_event_hash_id group_id end_event_timestamp issue_id].freeze
  INDEX_NAME = 'index_issue_stage_events_for_consistency_check'

  disable_ddl_transaction!

  def up
    add_concurrent_partitioned_index TABLE_NAME, COLUMN_NAMES, name: INDEX_NAME
  end

  def down
    remove_concurrent_partitioned_index_by_name TABLE_NAME, INDEX_NAME
  end
end