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

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

  disable_ddl_transaction!

  def up
    add_concurrent_foreign_key :bulk_import_exports, :projects, column: :project_id, on_delete: :cascade
  end

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