Files
Redmine/db/migrate/20170320051650_change_repositories_extra_info_limit.rb

13 lines
293 B
Ruby
Raw Normal View History

class ChangeRepositoriesExtraInfoLimit < ActiveRecord::Migration[4.2]
def up
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
max_size = 16.megabytes
change_column :repositories, :extra_info, :text, :limit => max_size
end
end
def down
# no-op
end
end