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

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

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

  def up
    with_lock_retries do
      remove_foreign_key_if_exists(:clusters_applications_jupyter, column: :cluster_id)
    end
  end

  def down
    add_concurrent_foreign_key :clusters_applications_jupyter, :clusters,
      column: :cluster_id, on_delete: :cascade, name: 'fk_rails_17df21c98c'
  end
end