Increase snippet content column size.

This will fix issue #3904
This commit is contained in:
Drew Blessing
2013-06-11 21:11:05 -05:00
parent d58aca0693
commit ca69099f2c
@@ -0,0 +1,9 @@
class IncreaseSnippetTextColumnSize < ActiveRecord::Migration
def up
# MYSQL LARGETEXT for snippet
change_column :snippets, :content, :text, :limit => 4294967295
end
def down
end
end