debian-mirror-gitlab/db/migrate/20220314184109_add_user_fk_to_protected_environment_approval_rules.rb
2022-06-21 17:19:12 +05:30

16 lines
422 B
Ruby

# frozen_string_literal: true
class AddUserFkToProtectedEnvironmentApprovalRules < Gitlab::Database::Migration[1.0]
disable_ddl_transaction!
def up
add_concurrent_foreign_key :protected_environment_approval_rules, :users, column: :user_id, on_delete: :cascade
end
def down
with_lock_retries do
remove_foreign_key_if_exists :protected_environment_approval_rules, column: :user_id
end
end
end