demarches-normaliennes/lib/tasks/deployment/20220726154500_truncate_exports.rake
Colin Darie 67d2cb2061 chore(schema): add exports#job_status
Same behavior as Archive

On destroy tous les exports existants qui n'ont pas cette notion de status.
2022-07-26 17:53:24 +02:00

13 lines
452 B
Ruby

namespace :after_party do
desc 'Deployment task: truncate_exports'
task truncate_exports: :environment do
puts "Running deploy task 'truncate_exports'"
Export.in_batches.destroy_all
# 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