1
0
Mirror von https://github.com/redmine/redmine.git synchronisiert 2024-08-26 05:57:38 +02:00
redmine/db/migrate/20110226120132_change_auth_sources_account_password_limit.rb

10 Zeilen
298 B
Ruby

class ChangeAuthSourcesAccountPasswordLimit < ActiveRecord::Migration
def self.up
change_column :auth_sources, :account_password, :string, :limit => nil, :default => ''
end
def self.down
change_column :auth_sources, :account_password, :string, :limit => 60, :default => ''
end
end