X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/9abed97635edbac7fb1a687298fff5c5434cdff4..ac5e3489e8b886b7b8a7252ab56ddeb3d3bdadc7:/app/models/voter.rb diff --git a/app/models/voter.rb b/app/models/voter.rb index 13b43f5..6246675 100644 --- a/app/models/voter.rb +++ b/app/models/voter.rb @@ -1,4 +1,11 @@ class Voter < ActiveRecord::Base belongs_to :election has_one :vote + + def destroy + vote.destroy if vote + super + end end + +