Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. Users:
  2. username: string
  3. email: string
  4. password: bcrypt hash
  5.  
  6. Teams:
  7. name: string
  8. desc: string
  9. members: {
  10. userId: "member" || "owner"
  11. }
  12.  
  13. Products:
  14. name: string
  15. desc: string
  16. team_id: int (id for a specific team)
  17. users: {
  18. userId: "member" || "owner" || "guest"
  19. }
  20.  
  21. Features:
  22. name: string
  23. desc: string
  24. product_id: int (id for product)
  25. status: string (accepted/rejected/delayed)
  26. milestone_id: int (id for a specific product milestone e.g. "v1/prototype/mvp")
  27.  
  28. Comments:
  29. content: string
  30. user_id: int (id of the user who posted it)
  31. feature_id: int (id for the feature it’s attached to)
  32.  
  33. Milestones:
  34. name: string
  35. desc: string
  36. dueDate: datetime (optional)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement