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

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

class AddIndexToTestReportsIssueIdCreatedAtAndId < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  TABLE_NAME = 'requirements_management_test_reports'
  INDEX_NAME = 'idx_test_reports_on_issue_id_created_at_and_id'

  def up
    add_concurrent_index TABLE_NAME, [:issue_id, :created_at, :id], name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name TABLE_NAME, INDEX_NAME
  end
end