Merge pull request #8607 from tchak/fix-published-revisions
fix(revision): backfill missing published_at
This commit is contained in:
commit
27f25cd57d
1 changed files with 17 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue