Commit ca69099f2ccc1ca6e807aecb3df5dfb9fe87f121

Authored by Drew Blessing
1 parent d58aca06

Increase snippet content column size.

This will fix issue #3904
db/migrate/20130611210815_increase_snippet_text_column_size.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class IncreaseSnippetTextColumnSize < ActiveRecord::Migration
  2 + def up
  3 + # MYSQL LARGETEXT for snippet
  4 + change_column :snippets, :content, :text, :limit => 4294967295
  5 + end
  6 +
  7 + def down
  8 + end
  9 +end
... ...