aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/056_add_attachment_text.rb
blob: f9c0801cf8aa1739b306d905444d67af2e5dfc68 (plain)
1
2
3
4
5
6
7
8
9
10
# -*- encoding : utf-8 -*-
class AddAttachmentText < ActiveRecord::Migration
  def self.up
        add_column :incoming_messages, :cached_attachment_text, :text
  end

  def self.down
        remove_column :incoming_messages, :cached_attachment_text
  end
end