Skip to content

Instantly share code, notes, and snippets.

@walshyb
Created August 14, 2020 17:38
Show Gist options
  • Save walshyb/5bb38d045c80a7c6673f3f16dfa63d0f to your computer and use it in GitHub Desktop.
Save walshyb/5bb38d045c80a7c6673f3f16dfa63d0f to your computer and use it in GitHub Desktop.
Example associations for Contact modal
# app/models/contact.rb
class Contact
has_one :user
has_many :email_addresses
accepts_nested_attributes_for :email_addresses
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment