Guest User

Untitled

a guest
Nov 9th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. users {
  2. id int unsigned primary,
  3. username text,
  4. password text,
  5. cash int unsigned
  6. }
  7.  
  8. artists {
  9. id int unsigned primary,
  10. name text
  11. }
  12.  
  13. genres {
  14. id int unsigned primary,
  15. name text
  16. }
  17.  
  18. records {
  19. id int unsigned primary,
  20. artist_id int unsigned foreign(artists.id) cascade cascade,
  21. genre_id int unsigned foreign(genres.id) cascade cascade,
  22. title text,
  23. price int unsigned,
  24. cover text
  25. }
  26.  
  27. user_carts {
  28. user_id int unsigned foreign(users.id) cascade cascade,
  29. record_id int unsigned foreign(records.id) cascade cascade
  30. }
  31.  
  32. user_history {
  33. user_id int unsigned foreign(users.id) cascade cascade,
  34. record_id int unsigned foreign(records.id) cascade cascade,
  35. purchase_date datetime
  36. }
Advertisement
Add Comment
Please, Sign In to add comment