選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20200826153402_add_totp_to_user.rb 180B

123456
  1. class AddTotpToUser < ActiveRecord::Migration[5.2]
  2. def change
  3. add_column :users, :twofa_totp_key, :string
  4. add_column :users, :twofa_totp_last_used_at, :integer
  5. end
  6. end