Guest User

Untitled

a guest
Jan 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. create database tes;
  2.  
  3. create table testpro_class (
  4. id int primary key,
  5. name varchar(255),
  6. description text,
  7. created_at timestamp,
  8. updated_at datetime
  9. );
  10.  
  11. create table testpro_student(
  12. id int(11) primary key,
  13. class_id int(11),
  14. name varchar(255),
  15. date_of_birth date,
  16. created_at timestamp,
  17. updated_at datetime
  18. );
Add Comment
Please, Sign In to add comment