Retrospring/db/migrate/20201001172537_add_otp_secr...

7 lines
201 B
Ruby
Raw Normal View History

2020-10-18 01:39:46 -07:00
class AddOtpSecretKeyToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :otp_secret_key, :string
add_column :users, :otp_module, :integer, default: 0, null: false
2020-10-18 01:39:46 -07:00
end
end