Entity.Attendance.dcm.yml 934 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Entity\Attendance:
  2. type: entity
  3. table: c_attendance
  4. repositoryClass: Entity\Repository\AttendanceRepository
  5. fields:
  6. c_id:
  7. id: true
  8. type: integer
  9. unsigned: false
  10. nullable: false
  11. id:
  12. id: true
  13. type: integer
  14. unsigned: false
  15. nullable: false
  16. name:
  17. type: text
  18. nullable: false
  19. description:
  20. type: text
  21. nullable: true
  22. active:
  23. type: boolean
  24. nullable: false
  25. attendance_qualify_title:
  26. type: string
  27. length: 255
  28. fixed: false
  29. nullable: true
  30. attendance_qualify_max:
  31. type: integer
  32. unsigned: false
  33. nullable: false
  34. attendance_weight:
  35. type: float
  36. nullable: false
  37. session_id:
  38. type: integer
  39. unsigned: false
  40. nullable: false
  41. locked:
  42. type: integer
  43. unsigned: false
  44. nullable: false
  45. lifecycleCallbacks:
  46. prePersist:
  47. - before_save