Guest User

Untitled

a guest
Mar 8th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. ---
  2. User:
  3. inheritance:
  4. extends: Entity
  5. connection: doctrine1
  6. fields:
  7. id:
  8. type: integer
  9. size: 11
  10. primary: true
  11. autoincrement: true
  12. name:
  13. type: string
  14. length: 255
  15. contact_id:
  16. type: integer
  17. length: 11
  18. relations:
  19. one2one: Contact
  20. many2many: Car as Cars:Users through UserCar
  21. indexes:
  22. name_x:
  23. columns:
  24. name:
  25. sorting: ASC
  26. length: 11
  27. primary: true
  28. type: unique
  29. attributes:
  30. export: tables
  31. templates: [Doctrine_Template_NestedSet]
  32. actAs:
  33. NestedSet:
  34. hasManyRoots: true
  35. rootColumnName: root_id
Add Comment
Please, Sign In to add comment