Guest User

Untitled

a guest
Mar 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. table user{
  2. id_user (Chave Primaria);
  3. date_of_birth (date);
  4. name (char(255))
  5. }
  6.  
  7. table post{
  8. id_post (Chave Primaria);
  9. title (char(255))
  10. }
  11.  
  12. table acesso{
  13. id_acesso(Chave primaria);
  14. id_user (Chave estrangeira);
  15. id_posts(Chave estrangeira);
  16. date (timestamp);
  17. duration (inteiro, segundos);
  18. }
Add Comment
Please, Sign In to add comment