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

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

class AddWebHooksServiceForeignKey < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INDEX_NAME = 'index_web_hooks_on_service_id'

  disable_ddl_transaction!

  def up
    add_concurrent_index :web_hooks, :service_id, name: INDEX_NAME
    add_concurrent_foreign_key :web_hooks, :services, column: :service_id, on_delete: :cascade, validate: false
  end

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

    remove_concurrent_index_by_name :web_hooks, INDEX_NAME
  end
end