Mercurial > hg > soundsoftware-site
view db/migrate/20140228130325_change_changesets_comments_limit.rb @ 1528:5047f066734d live
Fix merge failure in de.yml
author | Chris Cannam |
---|---|
date | Fri, 26 Sep 2014 10:18:42 +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