Skip to content

Instantly share code, notes, and snippets.

@caironoleto
Created January 12, 2012 16:00
Show Gist options
  • Save caironoleto/1601297 to your computer and use it in GitHub Desktop.
Save caironoleto/1601297 to your computer and use it in GitHub Desktop.
class Address
belongs_to :user
validates :zip_code, :presencee => true
end
class User
has_many :addresses
validates :addresses, :presence => true
validates_associated :addresses
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment