1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-08-26 05:57:38 +02:00
redmine/db/migrate/20110226120132_change_auth_sources_account_password_limit.rb

10 satır
298 B
Ruby
Ham Normal Görünüm Geçmiş

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