Installed TOTP gem and added TOTP column to schema.

This commit is contained in:
Logan Fick
2018-06-06 18:38:28 -04:00
parent 3d8199c9f9
commit 7eeccbc006
4 changed files with 48 additions and 40 deletions
@@ -0,0 +1,5 @@
class AddTotpToUsers < ActiveRecord::Migration
def change
add_column :users, :totp, :string
end
end