1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-07-27 20:19:39 +02:00
redmine/db/migrate/20110226120112_change_repositories_password_limit.rb

10 satır
281 B
Ruby

class ChangeRepositoriesPasswordLimit < ActiveRecord::Migration[4.2]
def self.up
change_column :repositories, :password, :string, :limit => nil, :default => ''
end
def self.down
change_column :repositories, :password, :string, :limit => 60, :default => ''
end
end