Hello, I am trying to understand usage of validates_uniqeness_of. Say I have, two column ''name'' and ''email'' in my table users three unique key is possible for these two columns 1. name 2. email 3. name and email together My question is, if I write validates_uniqueness_of :name, :email what uniqueness is it going to apply, 1 and 2 or, 3 ? Thanks, Mohammad
1 and 2 On 3/2/06, Mohammad Khan <beeplove@gmail.com> wrote:> Hello, > > I am trying to understand usage of validates_uniqeness_of. > Say I have, two column ''name'' and ''email'' in my table users > > three unique key is possible for these two columns > 1. name > 2. email > 3. name and email together > > My question is, > if I write > validates_uniqueness_of :name, :email > what uniqueness is it going to apply, > 1 and 2 > or, > 3 ? > > Thanks, > Mohammad > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
what is the syntax of validates_uniqeness_of to implement # 3
I had a similar question and what was replied to me was as follows: You can do it by overriding the validate method on the model e.g. def validate errors.add(''startlocation'', ''must be different to endlocation'') if startlocation == endlocation end which will get called on every save. You can also override validate_on_create and validate_on_update to get finer grained control. So, basically you''d want to see that if both the e-mail and the user name was unique you''d add an error outlined above. Now, the above code isn''t exactly what you''ll do, but it at least gets you started in the right direction. Hope that helps, Ryan On 3/2/06, Mohammad Khan <beeplove@gmail.com> wrote:> > what is the syntax of validates_uniqeness_of to implement # 3 > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Ryan Prins rprins@gmail.com http://www.lazyi.net -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060303/3def9927/attachment.html