canvas-lms/db/migrate/20150415152143_set_wiki_has...

11 lines
234 B
Ruby

class SetWikiHasNoFrontPage < ActiveRecord::Migration
tag :postdeploy
def up
DataFixup::SetWikiHasNoFrontPage.send_later_if_production_enqueue_args(:run,
:priority => Delayed::LOWER_PRIORITY)
end
def down
end
end