X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/2ba40f97b78f529984ff26c7c7d61c91d213e7b0..c65b1e11059c5cf510b54c785d4a246215058f70:/app/models/candidate.rb diff --git a/app/models/candidate.rb b/app/models/candidate.rb index 7af978a..430b6ab 100644 --- a/app/models/candidate.rb +++ b/app/models/candidate.rb @@ -1,6 +1,8 @@ class Candidate < ActiveRecord::Base belongs_to :election - validates_uniqueness_of :name + validates_presence_of :name + + # validate uniqueness of a name *within a given election* def <=>(other) self.name <=> other.name