Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. users
  2. id: int // users has_many chat_users
  3.  
  4. chats
  5. id: int // chats has_many chat_users
  6.  
  7. chat_users
  8. id: int
  9. chat_id: int (foreign key) // chat_users belongs_to chat
  10. user_id: int (foreign key) // chat_users belongs_to user
  11.  
  12. users, id: 1
  13. users, id: 2
  14.  
  15. chats, id: 1 // <---------
  16. chats, id: 2
  17.  
  18. chat_users, id: 1, chat_id: 1, user_id: 1 // <-------
  19. chat_users, id: 2, chat_id: 1, user_id: 2 // <-------
  20. chat_users, id: 3, chat_id: 2, user_id: 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement