canvas-lms/db/migrate/20141125133305_remove_orpha...

9 lines
264 B
Ruby

class RemoveOrphanedSubmissionVersions < ActiveRecord::Migration
tag :postdeploy
def self.up
DataFixup::RemoveOrphanedSubmissionVersions.send_later_if_production_enqueue_args(:run,
:priority => Delayed::LOWER_PRIORITY, :max_attempts => 1)
end
end