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

20200925125321_add_u2f_id_to_webauthn_registration.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a352fc6e9f66730794d63dfa0543164abf42692 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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

  DOWNTIME = false

  def change
    add_column :webauthn_registrations, :u2f_registration_id, :integer
  end
end