Guest User

Untitled

a guest
Jan 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. digraph models_diagram {
  2. graph[overlap=false, splines=true]
  3. "Venue" [shape=record, label="{\
  4. Venue|name :string\l\
  5. }"]
  6.  
  7. "User" [shape=record, label="{User|\
  8. email :string\l\
  9. password :string\l\
  10. }"]
  11.  
  12. "Order" [shape=record, label="{Order|\
  13. name :string\l\
  14. }"]
  15.  
  16. { rank=same; "User" "Venue" }
  17.  
  18. "User" -> "Order" [arrowtail=odot, arrowhead=crow, dir=both, label="request"]
  19. "User" -> "Venue" [arrowtail=odot, arrowhead=crow, dir=both, label=agent]
  20. }
Add Comment
Please, Sign In to add comment