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

12 lines
300 B
Ruby

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