fix: add rake task to fix wrong defaut_groupe_instructeur
to instance: skip this task if you merge this release with 2023-04-17-01
This commit is contained in:
parent
a202a57988
commit
83b8570a65
1 changed files with 19 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
||||||
|
namespace :after_party do
|
||||||
|
desc 'Deployment task: fix_defaut_groupe_instructeur_id_for_cloned_procedure'
|
||||||
|
task fix_defaut_groupe_instructeur_id_for_cloned_procedure: :environment do
|
||||||
|
procedures = Procedure
|
||||||
|
.joins(:groupe_instructeurs)
|
||||||
|
.where.not(parent_procedure_id: nil)
|
||||||
|
.where("procedures.created_at > ?", Time.zone.parse("17/04/2023"))
|
||||||
|
|
||||||
|
procedures.each do |p|
|
||||||
|
if !p.defaut_groupe_instructeur_id.in?(p.groupe_instructeurs.map(&:id))
|
||||||
|
new_defaut_groupe = p.groupe_instructeurs.find_by(label: p.parent_procedure.defaut_groupe_instructeur.label)
|
||||||
|
p.update!(defaut_groupe_instructeur: new_defaut_groupe)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
AfterParty::TaskRecord
|
||||||
|
.create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue