impress/db/openneo_id_migrate/20240407135246_add_neo_pass_email_to_users.rb
Emi Matchu d5c3bc087e Track neopass_email when logging in with NeoPass
Gonna use this in the Settings UI to communicate what NeoPass you're
connected to!
2024-04-07 07:17:07 -07:00

5 lines
130 B
Ruby

class AddNeoPassEmailToUsers < ActiveRecord::Migration[7.1]
def change
add_column :users, :neopass_email, :string
end
end