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

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

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

  def up
    return if foreign_key_exists?(:abuse_reports, column: :resolved_by_id)

    add_concurrent_foreign_key :abuse_reports, :users,
      column: :resolved_by_id,
      null: true,
      on_delete: :nullify
  end

  def down
    with_lock_retries do
      remove_foreign_key_if_exists :abuse_reports, column: :resolved_by_id
    end
  end
end