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

20200928125258_add_foreign_key_to_u2f_reg_id_in_webauthn_regs.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b76b826658eb56c259403ca3ce84897581ba5a51 (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 AddForeignKeyToU2fRegIdInWebauthnRegs < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INDEX_NAME = 'index_webauthn_registrations_on_u2f_registration_id'

  disable_ddl_transaction!

  def up
    add_concurrent_index :webauthn_registrations, :u2f_registration_id, where: 'u2f_registration_id IS NOT NULL', name: INDEX_NAME
    add_concurrent_foreign_key :webauthn_registrations, :u2f_registrations, column: :u2f_registration_id, on_delete: :cascade
  end

  def down
    remove_foreign_key_if_exists :webauthn_registrations, column: :u2f_registration_id
    remove_concurrent_index_by_name(:webauthn_registrations, INDEX_NAME)
  end
end