mirror of
https://github.com/redmine/redmine.git
synced 2025-11-06 13:25:44 +01:00
10 lines
215 B
Ruby
10 lines
215 B
Ruby
|
|
class AddAuthSourcesTls < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_column :auth_sources, :tls, :boolean, :default => false, :null => false
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_column :auth_sources, :tls
|
||
|
|
end
|
||
|
|
end
|