Skip to content

Instantly share code, notes, and snippets.

@thisduck
Created April 12, 2018 16:07
Show Gist options
  • Save thisduck/9a0a440c78f36c9c5b3c8e3e0aa17599 to your computer and use it in GitHub Desktop.
Save thisduck/9a0a440c78f36c9c5b3c8e3e0aa17599 to your computer and use it in GitHub Desktop.
def self.perform
partner = Partner.find(232570)
to_delete = partner.document_checklist_items.reject {|dci| dci.file_attachments.present?}
to_delete.each { |dci| partner.document_checklist_items.delete dci }
partner.rebuild_document_checklist_items!
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment