redmine/db/migrate/20120707064544_add_auth_sources_timeout.rb
Jean-Philippe Lang 3b207ee77c Adds a configurable timeout for LDAP authentication (#8978).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9931 e93f8b46-1217-0410-a6f0-8f06a7374b81
2012-07-07 09:36:04 +00:00

10 lines
187 B
Ruby

class AddAuthSourcesTimeout < ActiveRecord::Migration
def up
add_column :auth_sources, :timeout, :integer
end
def self.down
remove_column :auth_sources, :timeout
end
end