Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20231031200645_add_policy_configuration_fk_to_compliance_framework_security_policies.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf6419c51288911e50384d0245f72ed6f00af44e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class AddPolicyConfigurationFkToComplianceFrameworkSecurityPolicies < Gitlab::Database::Migration[2.2]
  milestone '16.6'
  disable_ddl_transaction!

  def up
    add_concurrent_foreign_key :compliance_framework_security_policies,
      :security_orchestration_policy_configurations,
      column: :policy_configuration_id,
      on_delete: :cascade
  end

  def down
    with_lock_retries do
      remove_foreign_key :compliance_framework_security_policies, column: :policy_configuration_id
    end
  end
end