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

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

  DOWNTIME = false
  disable_ddl_transaction!

  def up
    add_concurrent_foreign_key :ci_pipelines, :ci_refs, column: :ci_ref_id, on_delete: :nullify
  end

  def down
    with_lock_retries do
      remove_foreign_key_if_exists :ci_pipelines, column: :ci_ref_id
    end
  end
end