summaryrefslogtreecommitdiff
path: root/db/migrate/20210329095548_add_target_project_and_source_branch_index_to_merge_request.rb
blob: d351de6bd77ff6fd2097a07adc6439b2c626444a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class AddTargetProjectAndSourceBranchIndexToMergeRequest < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INDEX_NAME = 'index_merge_requests_on_target_project_id_and_source_branch'

  disable_ddl_transaction!

  def up
    add_concurrent_index :merge_requests, [:target_project_id, :source_branch], name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :epic_issues, INDEX_NAME
  end
end