Merge pull request #4282 from bke-drewb/3904
Increase snippet content column size.
This commit is contained in:
commit
2a7ae176c1
1 changed files with 9 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue