1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00
redmine/db/migrate/074_add_auth_sources_tls.rb
2007-10-16 19:19:10 +00:00

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