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

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

class RemovePushRulesApplicationSettingsPushRuleIdFk < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  def up
    return unless foreign_key_exists?(:application_settings, :push_rules, name: "fk_693b8795e4")

    with_lock_retries do
      execute('LOCK push_rules, application_settings IN ACCESS EXCLUSIVE MODE') if transaction_open?

      remove_foreign_key_if_exists(:application_settings, :push_rules, name: "fk_693b8795e4")
    end
  end

  def down
    add_concurrent_foreign_key(:application_settings, :push_rules,
      name: "fk_693b8795e4", column: :push_rule_id,
      target_column: :id, on_delete: :nullify)
  end
end