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

class AddIndexToCiPipelinesExternalPullRequest < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :ci_pipelines, :external_pull_request_id, where: 'external_pull_request_id IS NOT NULL'
  end

  def down
    remove_concurrent_index :ci_pipelines, :external_pull_request_id
  end
end