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.
42 lines
814 B
42 lines
814 B
Entity\Notification:
|
|
type: entity
|
|
table: notification
|
|
repositoryClass: Entity\Repository\NotificationRepository
|
|
fields:
|
|
id:
|
|
id: true
|
|
type: bigint
|
|
nullable: false
|
|
generator:
|
|
strategy: IDENTITY
|
|
dest_user_id:
|
|
type: integer
|
|
unsigned: false
|
|
nullable: false
|
|
dest_mail:
|
|
type: string
|
|
length: 255
|
|
fixed: true
|
|
nullable: true
|
|
title:
|
|
type: string
|
|
length: 255
|
|
fixed: true
|
|
nullable: true
|
|
content:
|
|
type: string
|
|
length: 255
|
|
fixed: true
|
|
nullable: true
|
|
send_freq:
|
|
type: smallint
|
|
nullable: true
|
|
created_at:
|
|
type: datetime
|
|
nullable: false
|
|
sent_at:
|
|
type: datetime
|
|
nullable: true
|
|
lifecycleCallbacks:
|
|
prePersist:
|
|
- before_save
|
|
|