debian-mirror-gitlab/db/migrate/20210414130017_add_foreign_key_to_bulk_import_exports_on_project.rb
2021-06-08 01:23:25 +05:30

18 lines
426 B
Ruby

# 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