debian-mirror-gitlab/db/migrate/20200925125321_add_u2f_id_to_webauthn_registration.rb
2021-01-03 14:25:43 +05:30

12 lines
259 B
Ruby

# 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