Entity.AccessUrl.dcm.yml 659 B

1234567891011121314151617181920212223242526272829303132333435
  1. Entity\AccessUrl:
  2. type: entity
  3. table: access_url
  4. repositoryClass: Entity\Repository\AccessUrlRepository
  5. fields:
  6. id:
  7. id: true
  8. type: integer
  9. unsigned: false
  10. nullable: false
  11. generator:
  12. strategy: IDENTITY
  13. url:
  14. type: string
  15. length: 255
  16. fixed: false
  17. nullable: false
  18. description:
  19. type: text
  20. nullable: true
  21. active:
  22. type: integer
  23. unsigned: false
  24. nullable: false
  25. created_by:
  26. type: integer
  27. unsigned: false
  28. nullable: false
  29. tms:
  30. type: datetime
  31. nullable: false
  32. lifecycleCallbacks:
  33. prePersist:
  34. - before_save