mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 22:05:56 +01:00
13 lines
281 B
Ruby
13 lines
281 B
Ruby
|
|
class ChangeChangesetsCommentsLimit < ActiveRecord::Migration
|
||
|
|
def up
|
||
|
|
if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
|
||
|
|
max_size = 16.megabytes
|
||
|
|
change_column :changesets, :comments, :text, :limit => max_size
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
# no-op
|
||
|
|
end
|
||
|
|
end
|