Guest User

Untitled

a guest
Jun 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Foo:
  2. tableName: foo
  3. columns:
  4. id:
  5. type: integer
  6. primary: true
  7. relations:
  8. Bar:
  9. local: id
  10. foreign: foo_id
  11.  
  12. Bar:
  13. tableName: bar
  14. columns:
  15. id:
  16. type: integer
  17. primary: true
  18. foo_id:
  19. type: integer
  20. relations:
  21. Foo:
  22. local: foo_id
  23. foreign: id
Add Comment
Please, Sign In to add comment