canvas-lms/db/migrate/20130828191910_fix_imported...

15 lines
289 B
Ruby

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