canvas-lms/db/migrate/20131025153323_undelete_som...

12 lines
279 B
Ruby

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