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.
37 lines
771 B
37 lines
771 B
Entity\SurveyQuestionOption:
|
|
type: entity
|
|
table: c_survey_question_option
|
|
repositoryClass: Entity\Repository\SurveyQuestionOptionRepository
|
|
fields:
|
|
c_id:
|
|
id: true
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
question_option_id:
|
|
id: true
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
question_id:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
survey_id:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
option_text:
|
|
type: text
|
|
nullable: false
|
|
sort:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
value:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
lifecycleCallbacks:
|
|
prePersist:
|
|
- before_save
|
|
|