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.
34 lines
708 B
34 lines
708 B
Entity\GradeModel:
|
|
type: entity
|
|
table: grade_model
|
|
repositoryClass: Entity\Repository\GradeModelRepository
|
|
fields:
|
|
id:
|
|
id: true
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
generator:
|
|
strategy: IDENTITY
|
|
name:
|
|
type: string
|
|
length: 255
|
|
fixed: false
|
|
nullable: false
|
|
description:
|
|
type: text
|
|
nullable: true
|
|
default_lowest_eval_exclude:
|
|
type: boolean
|
|
nullable: true
|
|
default_external_eval:
|
|
type: boolean
|
|
nullable: true
|
|
default_external_eval_prefix:
|
|
type: string
|
|
length: 140
|
|
fixed: false
|
|
nullable: true
|
|
lifecycleCallbacks:
|
|
prePersist:
|
|
- before_save
|
|
|