git-svn-id: http://svn.redmine.org/redmine/trunk@17997 e93f8b46-1217-0410-a6f0-8f06a7374b81
8 lines
190 B
Ruby
8 lines
190 B
Ruby
class AddVerifyPeerToAuthSources < ActiveRecord::Migration[5.2]
|
|
def change
|
|
change_table :auth_sources do |t|
|
|
t.boolean :verify_peer, default: true, null: false
|
|
end
|
|
end
|
|
end
|