Entity.SharedSurveyQuestionOption.dcm.yml 668 B

123456789101112131415161718192021222324252627282930
  1. Entity\SharedSurveyQuestionOption:
  2. type: entity
  3. table: shared_survey_question_option
  4. repositoryClass: Entity\Repository\SharedSurveyQuestionOptionRepository
  5. fields:
  6. question_option_id:
  7. id: true
  8. type: integer
  9. unsigned: false
  10. nullable: false
  11. generator:
  12. strategy: IDENTITY
  13. question_id:
  14. type: integer
  15. unsigned: false
  16. nullable: false
  17. survey_id:
  18. type: integer
  19. unsigned: false
  20. nullable: false
  21. option_text:
  22. type: text
  23. nullable: false
  24. sort:
  25. type: integer
  26. unsigned: false
  27. nullable: false
  28. lifecycleCallbacks:
  29. prePersist:
  30. - before_save