mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-04 08:03:23 +00:00
Long text custom fields don't accept values longer than 64KB if backend database is MySQL (#29209).
git-svn-id: http://svn.redmine.org/redmine/trunk@17965 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
7a11864812
commit
648a6408e7
@ -0,0 +1,12 @@
|
||||
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
|
||||
Loading…
x
Reference in New Issue
Block a user