fix(procedure.clone): le clonage des procédure était bloqué car nous avions des données inconsistantes
This commit is contained in:
parent
717b7b7287
commit
45459343a7
1 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
namespace :after_party do
|
||||
desc 'Deployment task: backfill_procedure_routing_criteria_name'
|
||||
task backfill_procedure_routing_criteria_name: :environment do
|
||||
puts "Running deploy task 'backfill_procedure_routing_criteria_name'"
|
||||
|
||||
# Put your task implementation HERE.
|
||||
procedure_without_routing_criteria_name = Procedure.where(routing_criteria_name: nil)
|
||||
progress = ProgressReport.new(procedure_without_routing_criteria_name.count)
|
||||
procedure_without_routing_criteria_name.in_batches do |relation|
|
||||
count = relation.count
|
||||
relation.update_all(routing_criteria_name: 'Votre ville')
|
||||
progress.inc(count)
|
||||
end
|
||||
progress.finish
|
||||
# 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
|
Loading…
Reference in a new issue