canvas-lms/db/migrate/20150902140556_fix_unresolv...

11 lines
276 B
Ruby

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