canvas-lms/db/migrate/20160208133729_associate_gr...

12 lines
289 B
Ruby

class AssociateGradedDiscussionAttachments < ActiveRecord::Migration
tag :postdeploy
def up
DataFixup::AssociateGradedDiscussionAttachments.send_later_if_production_enqueue_args(:run,
priority: Delayed::LOW_PRIORITY, n_strand: 'long_datafixups')
end
def down
end
end