debian-mirror-gitlab/db/migrate/20200331113738_add_fk_to_ci_ref_id.rb
2020-06-23 00:09:42 +05:30

19 lines
411 B
Ruby

# 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