Guest User

Untitled

a guest
Oct 20th, 2017
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. User table
  2.  
  3. id | name | user_type | email | password
  4. 1 | John | 1 | john@gmail.com | something
  5. 2 | Roy | 1 | roy@gmail.com | something
  6. 3 | Rax | 1 | Rax@gmail.com | something
  7. 4 | Ren | 1 | ren@gmail.com | something
  8.  
  9. AssignUser Table
  10.  
  11. id | user_id | assign_to_math | assign_to_chemistry
  12. 1 | 3 | 2 | 1
  13. 2 | 4 | 1 | 2
  14.  
  15. public function getInfoFormathTutor(){
  16. return $this->hasOne('AppAssignUser', 'id', 'assign_to_math');
  17. }
Add Comment
Please, Sign In to add comment