Files
Redmine/db/migrate/20190315094151_change_custom_values_value_limit.rb
2019-03-15 09:45:19 +00:00

13 lines
285 B
Ruby

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