Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 440 Bytes

Notes.md

File metadata and controls

35 lines (26 loc) · 440 Bytes

Models

  • Winery belongs_to :user has_many :comments has_many :users, through: :commments belongs_to region

name website phone description:text

  • User has_many wineries has_many :comments has_many :commented_wineries, through: :comments has_many regions, through: :wineries

Username email password-digest

  • Comment belongs_to :user belongs_to :winery

content

  • Regions

name

has_many :wineries has_many :users, through: :wineries