fix(procedure): backfill duree_conservation

This commit is contained in:
simon lehericey 2022-11-21 17:51:33 +01:00 committed by LeSim
parent 9c8c55a8e9
commit 33dcd7a787

View file

@ -0,0 +1,17 @@
namespace :after_party do
desc 'Deployment task: clean_invalid_procedures'
task clean_invalid_procedures: :environment do
puts "Running deploy task 'clean_invalid_procedures'"
Procedure.with_discarded.where(duree_conservation_etendue_par_ds: nil)
.update_all(duree_conservation_etendue_par_ds: false)
Procedure.with_discarded.where(max_duree_conservation_dossiers_dans_ds: nil)
.update_all(max_duree_conservation_dossiers_dans_ds: Procedure::NEW_MAX_DUREE_CONSERVATION)
# 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