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