aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/060_add_cached_main_text.rb
blob: 2317de1ad225c95c03ea63a7695a101d0608462f (plain)
1
2
3
4
5
6
7
8
9
10
# -*- encoding : utf-8 -*-
class AddCachedMainText < ActiveRecord::Migration
  def self.up
        add_column :incoming_messages, :cached_main_body_text, :text
  end

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