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

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

  disable_ddl_transaction!

  def up
    add_concurrent_foreign_key :bulk_import_exports, :namespaces, column: :group_id, on_delete: :cascade
  end

  def down
    with_lock_retries do
      remove_foreign_key :bulk_import_exports, column: :group_id
    end
  end
end