blob: c372b471c8da6f7f8273bc96a1a969a016819f5c (
plain)
1
2
3
4
5
6
7
8
9
|
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
|