canvas-lms/db/migrate/20121029214423_fix_root_out...

11 lines
270 B
Ruby

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