File: 20200826153402_add_totp_to_user.rb

package info (click to toggle)
redmine 6.0.6%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 20,104 kB
  • sloc: ruby: 116,318; javascript: 12,885; sh: 460; perl: 303; python: 166; makefile: 30
file content (6 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
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