summaryrefslogtreecommitdiffstats
path: root/db/migrate/20170320051650_change_repositories_extra_info_limit.rb
blob: 1052efc207c93210f9eb6248dffe883213e904d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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