blob: b43542bf799ba40eb95bdd53d8e69d71c7ffaa40 (
plain)
1
2
3
4
5
6
7
8
|
class AddOtpToUsers < ActiveRecord::Migration[8.1]
def change
add_column :users, :otp_secret, :string
add_column :users, :otp_pending_secret, :string
add_column :users, :otp_consumed_timestep, :integer
add_column :users, :otp_required, :boolean, :null => false, :default => false
end
end
|