Mercurial > hg > soundsoftware-site
view .svn/pristine/5b/5b955d286b27793486f23b8585e47c04cc883872.svn-base @ 1613:90bed4e10cc8 deploy
Download file link
author | Chris Cannam |
---|---|
date | Wed, 30 Aug 2017 17:24:37 +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