Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save goodviber/823a58275c20024420a0799158108768 to your computer and use it in GitHub Desktop.
Save goodviber/823a58275c20024420a0799158108768 to your computer and use it in GitHub Desktop.
has many through
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