canvas-lms/db/migrate/20111024163214_detect_attac...

11 lines
194 B
Ruby

class DetectAttachmentEncoding < ActiveRecord::Migration
tag :postdeploy
def self.up
DataFixup::DetectAttachmentEncoding.send_later_if_production(:run)
end
def self.down
end
end