canvas-lms/db/migrate/20161021180838_fix_double_y...

12 lines
286 B
Ruby

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