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.
56 lines
1.1 KiB
56 lines
1.1 KiB
Entity\GradebookEvaluation:
|
|
type: entity
|
|
table: gradebook_evaluation
|
|
repositoryClass: Entity\Repository\GradebookEvaluationRepository
|
|
fields:
|
|
id:
|
|
id: true
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
generator:
|
|
strategy: IDENTITY
|
|
name:
|
|
type: text
|
|
nullable: false
|
|
description:
|
|
type: text
|
|
nullable: true
|
|
user_id:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
course_code:
|
|
type: string
|
|
length: 40
|
|
fixed: false
|
|
nullable: true
|
|
category_id:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: true
|
|
created_at:
|
|
type: datetime
|
|
nullable: false
|
|
weight:
|
|
type: float
|
|
nullable: false
|
|
max:
|
|
type: float
|
|
nullable: false
|
|
visible:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
type:
|
|
type: string
|
|
length: 40
|
|
fixed: false
|
|
nullable: false
|
|
locked:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
lifecycleCallbacks:
|
|
prePersist:
|
|
- before_save
|
|
|