Guest User

Untitled

a guest
Jun 14th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. TABLE:
  2. Bug
  3. id integer
  4. desc string
  5. status_id integer fk
  6.  
  7. Status
  8. id integer
  9. desc string
  10.  
  11. RAILS MODEL:
  12. Bug
  13. belongs_to :status
  14.  
  15. Status
  16. has_many :bugs
Add Comment
Please, Sign In to add comment