Commit a5f04df8 authored by Alexis Reigel's avatar Alexis Reigel

update all records at once using `update_all`

parent 843b1de0
...@@ -77,12 +77,11 @@ class GpgKey < ActiveRecord::Base ...@@ -77,12 +77,11 @@ class GpgKey < ActiveRecord::Base
end end
def revoke def revoke
GpgSignature.where(gpg_key: self, valid_signature: true).find_each do |gpg_signature| GpgSignature.where(gpg_key: self, valid_signature: true).update_all(
gpg_signature.update_attributes!( gpg_key_id: nil,
gpg_key: nil, valid_signature: false,
valid_signature: false updated_at: Time.zone.now
) )
end
destroy destroy
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment