You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
564 B
27 lines
564 B
Entity\QuizRelQuestion:
|
|
type: entity
|
|
table: c_quiz_rel_question
|
|
repositoryClass: Entity\Repository\QuizRelQuestionRepository
|
|
fields:
|
|
c_id:
|
|
id: true
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
question_id:
|
|
id: true
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
exercice_id:
|
|
id: true
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
question_order:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
lifecycleCallbacks:
|
|
prePersist:
|
|
- before_save
|
|
|