????

Your IP : 3.149.235.7


Current Path : C:/inetpub/vhost/redmine/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine/db/migrate/20170320051650_change_repositories_extra_info_limit.rb

class ChangeRepositoriesExtraInfoLimit < ActiveRecord::Migration[4.2]
  def up
    if Redmine::Database.mysql?
      max_size = 16.megabytes
      change_column :repositories, :extra_info, :text, :limit => max_size
    end
  end

  def down
    # no-op
  end
end