20130611210815_increase_snippet_text_column_size.rb 200 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 class IncreaseSnippetTextColumnSize < ActiveRecord::Migration def up # MYSQL LARGETEXT for snippet change_column :snippets, :content, :text, :limit => 4294967295 end def down end end