Merge pull request #8607 from tchak/fix-published-revisions

fix(revision): backfill missing published_at
This commit is contained in:
Paul Chavard 2023-02-09 12:00:08 +01:00 committed by GitHub
commit 27f25cd57d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,17 @@
namespace :after_party do
desc 'Deployment task: backfill_revisions_published_at'
task backfill_revisions_published_at: :environment do
puts "Running deploy task 'backfill_revisions_published_at'"
ProcedureRevision
.joins(:procedure)
.where('procedures.draft_revision_id != procedure_revisions.id')
.where(published_at: nil)
.update_all('published_at = created_at')
# 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