canvas-lms/db/migrate/20110804195852_label_conver...

12 lines
228 B
Ruby

class LabelConversations < ActiveRecord::Migration
tag :predeploy
def self.up
add_column :conversation_participants, :label, :string
end
def self.down
remove_column :conversation_participants, :label
end
end