Merge pull request #4282 from bke-drewb/3904

Increase snippet content column size.
This commit is contained in:
Dmitriy Zaporozhets 2013-07-11 09:50:21 -07:00
commit 2a7ae176c1
1 changed files with 9 additions and 0 deletions

View File

@ -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