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

20170619144837_add_index_for_head_pipeline_merge_request.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f97c8a14b8d3ab0418b86b2f4eb0c74b4e3df930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddIndexForHeadPipelineMergeRequest < ActiveRecord::Migration[4.2]
  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