Created
May 15, 2018 09:54
-
-
Save goodviber/823a58275c20024420a0799158108768 to your computer and use it in GitHub Desktop.
has many through
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
class Sophead < ApplicationRecord | |
has_many :ods | |
has_many :od_items, through: :ods | |
end | |
models/od.rb | |
class Od < ApplicationRecord | |
belongs_to :sophead | |
has_many :od_items | |
end | |
models/od_item.rb | |
class OdItem < ApplicationRecord | |
belongs_to :od | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment