gitlab-org--gitlab-foss/db/migrate/20200925125321_add_u2f_id_t...

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