Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lolaodelola/1b5cbf3c9dec93c6e9b787b4556fee15 to your computer and use it in GitHub Desktop.
Save lolaodelola/1b5cbf3c9dec93c6e9b787b4556fee15 to your computer and use it in GitHub Desktop.
# app/models/affirmation.rb
has_many :sent_affirmations
has_many :developers, through: :sent_affirmation
# app/models/developer.rb
has_many :sent_affirmations
has_many :affirmations, through: :sent_affirmation
# app/models/sent_affirmation.rb
belongs_to :affirmation
belongs_to :developer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment