Advertisement
Guest User

Untitled

a guest
Oct 17th, 2016
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. XXX\AppBundle\Model\Entity\User:
  2. type: entity
  3. table: users
  4. repositoryClass: XXX\AppBundle\Model\Repository\UserRepository
  5. id:
  6. id:
  7. type: integer
  8. scale: 0
  9. length: null
  10. unique: false
  11. nullable: false
  12. precision: 0
  13. id: true
  14. generator:
  15. strategy: IDENTITY
  16. fields:
  17. username:
  18. type: string
  19. scale: 0
  20. length: null
  21. unique: true
  22. nullable: false
  23. precision: 0
  24. email:
  25. type: string
  26. scale: 0
  27. length: null
  28. unique: true
  29. nullable: false
  30. precision: 0
  31. password:
  32. type: string
  33. scale: 0
  34. length: null
  35. unique: false
  36. nullable: false
  37. precision: 0
  38. roles:
  39. type: json_array
  40. scale: 0
  41. length: null
  42. unique: false
  43. nullable: false
  44. precision: 0
  45. oneToMany:
  46. logEvents:
  47. targetEntity: XXX\AppBundle\Model\Entity\Server\Logging
  48. cascade:
  49. - remove
  50. - persist
  51. fetch: LAZY
  52. mappedBy: author
  53. inversedBy: null
  54. orphanRemoval: false
  55. orderBy: null
  56. lifecycleCallbacks: { }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement