Guest User

Untitled

a guest
Oct 28th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. User:
  2. columns:
  3. username: string(255)
  4. password: string(255)
  5. relations:
  6. BankAccounts:
  7. type: many
  8. class: BankAccout
  9. local: id
  10. foreign: user_id
  11. Bills:
  12. type: many
  13. class: Bill
  14. local: id
  15. foreign: user_id
  16.  
  17.  
  18. BankAccount:
  19. columns:
  20. name: string(255)
  21. credit: float
  22. user_id: integer
  23. relations:
  24. User:
  25. local: user_id
  26. foreign: id
  27. foreignAlias: BankAccounts
Add Comment
Please, Sign In to add comment