Renamed TOTP secret column in schema.

This commit is contained in:
Logan Fick
2018-06-07 20:43:51 -04:00
parent 1d1b66f4a0
commit ce8cb6f4ae
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
class AddTotpToUsers < ActiveRecord::Migration
def change
add_column :users, :totp_code, :string
add_column :users, :totp_secret, :string
add_column :users, :totp_enabled, :boolean, default: false
end
end