canvas-lms/db/migrate/20120531183543_update_colle...

18 lines
491 B
Ruby

class UpdateCollectionItemColumns < ActiveRecord::Migration
tag :predeploy
def self.up
rename_column :collection_items, :description, :user_comment
add_column :collection_item_datas, :title, :string
add_column :collection_item_datas, :description, :text
end
def self.down
rename_column :collection_items, :user_comment, :description
remove_column :collection_item_datas, :title, :string
remove_column :collection_item_datas, :description, :text
end
end