20200630190544_add_webauthn_id_to_users.rb 157 B

1234567
  1. # frozen_string_literal: true
  2. class AddWebauthnIdToUsers < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :users, :webauthn_id, :string
  5. end
  6. end