canvas-lms/db/migrate/20110930235857_unscribd_tex...

12 lines
303 B
Ruby

class UnscribdTextHtmlAttachments < ActiveRecord::Migration
tag :predeploy
def self.up
Attachment.where(:content_type => ['text/html', 'application/xhtml+xml', 'application/xml', 'text/xml']).
update_all(:scribd_mime_type_id => nil, :scribd_doc => nil)
end
def self.down
end
end