mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-20 15:31:12 +00:00
Patch by Felix Schäfer. git-svn-id: http://svn.redmine.org/redmine/trunk@19988 e93f8b46-1217-0410-a6f0-8f06a7374b81
6 lines
127 B
Ruby
6 lines
127 B
Ruby
class AddTwofaSchemeToUser < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :users, :twofa_scheme, :string
|
|
end
|
|
end
|