Files
Redmine/db/migrate/20200826153402_add_totp_to_user.rb

7 lines
180 B
Ruby
Raw Permalink Normal View History

class AddTotpToUser < ActiveRecord::Migration[5.2]
def change
add_column :users, :twofa_totp_key, :string
add_column :users, :twofa_totp_last_used_at, :integer
end
end