Entity.PersonalAgendaRepeat.dcm.yml 683 B

123456789101112131415161718192021222324252627282930313233
  1. Entity\PersonalAgendaRepeat:
  2. type: entity
  3. table: personal_agenda_repeat
  4. repositoryClass: Entity\Repository\PersonalAgendaRepeatRepository
  5. fields:
  6. cal_id:
  7. id: true
  8. type: integer
  9. unsigned: false
  10. nullable: false
  11. generator:
  12. strategy: IDENTITY
  13. cal_type:
  14. type: string
  15. length: 20
  16. fixed: false
  17. nullable: true
  18. cal_end:
  19. type: integer
  20. unsigned: false
  21. nullable: true
  22. cal_frequency:
  23. type: integer
  24. unsigned: false
  25. nullable: true
  26. cal_days:
  27. type: string
  28. length: 7
  29. fixed: true
  30. nullable: true
  31. lifecycleCallbacks:
  32. prePersist:
  33. - before_save