mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 11:25:55 +01:00
7 lines
180 B
Ruby
7 lines
180 B
Ruby
|
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
|