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

20230629112833_create_fk_ml_candidates_on_user_id.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85545c415290ddfbfa399e9c5dfca08461635f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

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

  NEW_CONSTRAINT_NAME = 'fk_ml_candidates_on_user_id'

  def up
    add_concurrent_foreign_key(
      :ml_candidates,
      :users,
      column: :user_id,
      on_delete: :nullify,
      validate: false,
      name: NEW_CONSTRAINT_NAME
    )
  end

  def down
    with_lock_retries do
      remove_foreign_key_if_exists(
        :ml_candidates,
        column: :user_id,
        on_delete: :nullify,
        name: NEW_CONSTRAINT_NAME
      )
    end
  end
end