summaryrefslogtreecommitdiff
path: root/db/migrate/20170619144837_add_index_for_head_pipeline_merge_request.rb
blob: 02863bee0825533cda5d68e654d29dae5a7978b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddIndexForHeadPipelineMergeRequest < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :merge_requests, :head_pipeline_id
  end

  def down
    remove_concurrent_index :merge_requests, :head_pipeline_id if index_exists?(:merge_requests, :head_pipeline_id)
  end
end