20140911000001_update_ticket_article_size.rb 169 B

12345678
  1. class UpdateTicketArticleSize < ActiveRecord::Migration
  2. def up
  3. change_column :ticket_articles, :body, :text, :limit => 4.megabytes + 1
  4. end
  5. def down
  6. end
  7. end