canvas-lms/db/migrate/20120629215700_add_conversa...

14 lines
384 B
Ruby

class AddConversationMessageProperties < ActiveRecord::Migration
tag :predeploy
def self.up
add_column :conversation_messages, :has_attachments, :boolean
add_column :conversation_messages, :has_media_objects, :boolean
end
def self.down
remove_column :conversation_messages, :has_attachments
remove_column :conversation_messages, :has_media_objects
end
end