summaryrefslogtreecommitdiff
path: root/db/migrate/20210325092215_add_not_valid_foreign_key_to_group_hooks.rb
blob: 2389f90d498fe02ee1c45e38977826b5b7bf382c (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 AddNotValidForeignKeyToGroupHooks < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      add_foreign_key :web_hooks, :namespaces, column: :group_id, on_delete: :cascade, validate: false
    end
  end

  def down
    with_lock_retries do
      remove_foreign_key_if_exists :web_hooks, column: :group_id
    end
  end
end