demarches-normaliennes/lib/tasks/deployment/20221221170137_normalize_datetime_values.rake
Damien Le Thiec 5e26acb0e1
Make date and datetime prefillable (#8304)
* Make date and datetime prefillable

* Format in ISO8601 format
2023-01-12 17:42:02 +01:00

16 lines
640 B
Ruby

namespace :after_party do
desc 'Deployment task: normalize_datetime_values'
task normalize_datetime_values: :environment do
puts "Running deploy task 'normalize_datetime_values'"
# Put your task implementation HERE.
Champs::DateTimeChamp.in_batches do |datetime_champs|
Migrations::BatchUpdateDatetimeValueJob.perform_later(datetime_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