Mercurial > hg > soundsoftware-site
view .svn/pristine/5b/5b955d286b27793486f23b8585e47c04cc883872.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 11 Sep 2014 10:24:38 +0100 |
parents | dffacf8a6908 |
children |
line wrap: on
line source
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