My User model is pretty standard - it has an email:string column and I validate the uniqueness of this in the User model with validates :email, :unique => true.
In order to allow alternate email addresses for users, I created a new model:
AlternateAddress, with columns user_id:integer and email:string.
A User has_many AlternateAddresses, and an AlternateAddress belongs to a User. This setup makes for a simple nested form, like this: http://railscasts.com/episodes/196-nested-model-form-part-1.
I realized that I need to validate the 2 email:string columns (one in User.rb, the other in AlternateAddress.rb) "together" - so there are no duplicate email addresses anywhere.
How would I do this? Or, is my entire methodology off?
Thanks in advance.