canvas-lms/db/migrate/20150818031808_drop_unused_...

14 lines
315 B
Ruby
Raw Normal View History

class DropUnusedColumnsFromGroups < ActiveRecord::Migration
tag :postdeploy
def up
remove_column :groups, :hashtag
remove_column :groups, :show_public_context_messages
end
def down
add_column :groups, :hashtag, :string
add_column :groups, :show_public_context_messages, :boolean
end
end