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

20191107064946_update_oauth_open_id_requests_foreign_keys.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 439610758a6ab92a999207fe18c3fac16f9fa556 (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 UpdateOauthOpenIdRequestsForeignKeys < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_foreign_key(:oauth_openid_requests, :oauth_access_grants, column: :access_grant_id, on_delete: :cascade, name: new_foreign_key_name)
    remove_foreign_key_if_exists(:oauth_openid_requests, name: existing_foreign_key_name)
  end

  def down
    add_concurrent_foreign_key(:oauth_openid_requests, :oauth_access_grants, column: :access_grant_id, on_delete: false, name: existing_foreign_key_name)
    remove_foreign_key_if_exists(:oauth_openid_requests, name: new_foreign_key_name)
  end

  private

  def new_foreign_key_name
    concurrent_foreign_key_name(:oauth_openid_requests, :access_grant_id)
  end

  def existing_foreign_key_name
    'fk_oauth_openid_requests_oauth_access_grants_access_grant_id'
  end
end