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.
35 lines
713 B
35 lines
713 B
Entity\EventEmailTemplate:
|
|
type: entity
|
|
table: event_email_template
|
|
repositoryClass: Entity\Repository\EventEmailTemplateRepository
|
|
fields:
|
|
id:
|
|
id: true
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
generator:
|
|
strategy: IDENTITY
|
|
message:
|
|
type: text
|
|
nullable: true
|
|
subject:
|
|
type: string
|
|
length: 255
|
|
fixed: false
|
|
nullable: true
|
|
event_type_name:
|
|
type: string
|
|
length: 255
|
|
fixed: false
|
|
nullable: true
|
|
activated:
|
|
type: boolean
|
|
nullable: false
|
|
language_id:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: true
|
|
lifecycleCallbacks:
|
|
prePersist:
|
|
- before_save
|
|
|