socialforge/db/migrate/20160108021447_change_attac...

12 lines
274 B
Ruby
Raw Normal View History

class ChangeAttachmentHistory < ActiveRecord::Migration
def up
2016-01-08 18:55:17 +08:00
# attachments = Attachment.where("container_type =?", "Version")
# attachments.each do |am|
# am.update_attribute(:container_type, "Project") unless am.nil?
# end
end
def down
end
end