Entity.SurveyInvitation.dcm.yml 960 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Entity\SurveyInvitation:
  2. type: entity
  3. table: c_survey_invitation
  4. repositoryClass: Entity\Repository\SurveyInvitationRepository
  5. fields:
  6. c_id:
  7. id: true
  8. type: integer
  9. unsigned: false
  10. nullable: false
  11. survey_invitation_id:
  12. id: true
  13. type: integer
  14. unsigned: false
  15. nullable: false
  16. survey_code:
  17. type: string
  18. length: 20
  19. fixed: false
  20. nullable: false
  21. user:
  22. type: string
  23. length: 250
  24. fixed: false
  25. nullable: false
  26. invitation_code:
  27. type: string
  28. length: 250
  29. fixed: false
  30. nullable: false
  31. invitation_date:
  32. type: datetime
  33. nullable: false
  34. reminder_date:
  35. type: datetime
  36. nullable: false
  37. answered:
  38. type: integer
  39. unsigned: false
  40. nullable: false
  41. session_id:
  42. type: integer
  43. unsigned: false
  44. nullable: false
  45. lifecycleCallbacks:
  46. prePersist:
  47. - before_save