Created
August 14, 2020 17:38
-
-
Save walshyb/5bb38d045c80a7c6673f3f16dfa63d0f to your computer and use it in GitHub Desktop.
Example associations for Contact modal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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