summaryrefslogtreecommitdiffstats
path: root/db/migrate/20190315094151_change_custom_values_value_limit.rb
blob: a1d6912416dea44c1bab2a116ceed267bc07e4b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class ChangeCustomValuesValueLimit < ActiveRecord::Migration[5.2]
  def up
    if Redmine::Database.mysql?
      max_size = 16.megabytes
      change_column :custom_values, :value, :text, :limit => max_size
    end
  end

  def down
    # no-op
  end
end