canvas-lms/db/migrate/20110801080015_message_forw...

10 lines
229 B
Ruby

class MessageForwards < ActiveRecord::Migration
def self.up
add_column :conversation_messages, :forwarded_message_ids, :text
end
def self.down
remove_column :conversation_messages, :forwarded_message_ids
end
end