canvas-lms/db/migrate/20170714192323_populate_con...

9 lines
311 B
Ruby

class PopulateContextOnWikiPages < ActiveRecord::Migration[5.0]
tag :postdeploy
def change
DataFixup::PopulateContextOnWikiPages.send_later_if_production_enqueue_args(:run,
:priority => Delayed::LOW_PRIORITY, :strand => "populate_wiki_page_context_#{Shard.current.database_server.id}")
end
end