mirror of
https://github.com/redmine/redmine.git
synced 2025-11-14 09:16:02 +01:00
6 lines
150 B
Ruby
6 lines
150 B
Ruby
|
|
class AddTwofaRequiredToGroups < ActiveRecord::Migration[6.1]
|
||
|
|
def change
|
||
|
|
add_column :users, :twofa_required, :boolean, default: false
|
||
|
|
end
|
||
|
|
end
|