canvas-lms/db/migrate/20130918193333_add_group_to...

12 lines
229 B
Ruby

class AddGroupToBatchConversations < ActiveRecord::Migration
tag :predeploy
def self.up
add_column :conversation_batches, :group, :boolean
end
def self.down
remove_column :conversation_batches, :group
end
end