You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20210704125704_add_twofa_required_to_groups.rb 150B

12345
  1. class AddTwofaRequiredToGroups < ActiveRecord::Migration[6.1]
  2. def change
  3. add_column :users, :twofa_required, :boolean, default: false
  4. end
  5. end