Entity.CourseDescription.dcm.yml 740 B

12345678910111213141516171819202122232425262728293031323334353637
  1. Entity\CourseDescription:
  2. type: entity
  3. table: c_course_description
  4. repositoryClass: Entity\Repository\CourseDescriptionRepository
  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. title:
  17. type: string
  18. length: 255
  19. fixed: false
  20. nullable: true
  21. content:
  22. type: text
  23. nullable: true
  24. session_id:
  25. type: integer
  26. unsigned: false
  27. nullable: true
  28. description_type:
  29. type: boolean
  30. nullable: false
  31. progress:
  32. type: integer
  33. unsigned: false
  34. nullable: false
  35. lifecycleCallbacks:
  36. prePersist:
  37. - before_save