This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/db/migrate/20180606223258_add_totp_to_users.rb
2018-06-07 20:27:13 -04:00

7 lines
176 B
Ruby

class AddTotpToUsers < ActiveRecord::Migration
def change
add_column :users, :totp_code, :string
add_column :users, :totp_enabled, :boolean, default: false
end
end