Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 372 Bytes

votes.md

File metadata and controls

18 lines (13 loc) · 372 Bytes

!SLIDE

Allow voting on a topic

!SLIDE

Votes

  • Each vote will be an object (row in database table)
  • When someone votes on a topic, we'll create a new vote object and save it
  • Each vote is associated with a specific topic

!SLIDE

Rails associations

  • Topic has_many :votes
  • Vote belongs_to :topics

!SLIDE has_many