18 lines
644 B
Ruby
18 lines
644 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :after_party do
|
|
desc 'Deployment task: normalize_pays_values'
|
|
task normalize_pays_values: :environment do
|
|
puts "Running deploy task 'normalize_pays_values'"
|
|
|
|
# Put your task implementation HERE.
|
|
Champs::PaysChamp.in_batches do |pays_champs|
|
|
Migrations::BatchUpdatePaysValuesJob.perform_later(pays_champs.pluck(:id))
|
|
end
|
|
|
|
# Update task as completed. If you remove the line below, the task will
|
|
# run with every deploy (or every time you call after_party:run).
|
|
AfterParty::TaskRecord
|
|
.create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
|
|
end
|
|
end
|