Entity.DropboxCategory.dcm.yml 696 B

1234567891011121314151617181920212223242526272829303132333435
  1. Entity\DropboxCategory:
  2. type: entity
  3. table: c_dropbox_category
  4. repositoryClass: Entity\Repository\DropboxCategoryRepository
  5. fields:
  6. c_id:
  7. id: true
  8. type: integer
  9. unsigned: false
  10. nullable: false
  11. cat_id:
  12. id: true
  13. type: integer
  14. unsigned: false
  15. nullable: false
  16. cat_name:
  17. type: text
  18. nullable: false
  19. received:
  20. type: boolean
  21. nullable: false
  22. sent:
  23. type: boolean
  24. nullable: false
  25. user_id:
  26. type: integer
  27. unsigned: false
  28. nullable: false
  29. session_id:
  30. type: integer
  31. unsigned: false
  32. nullable: false
  33. lifecycleCallbacks:
  34. prePersist:
  35. - before_save