mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
26 lines
586 B
YAML
26 lines
586 B
YAML
Chill\PersonBundle\Entity\PersonHistoryFile:
|
|
type: entity
|
|
table: person_history_file
|
|
id:
|
|
id:
|
|
type: integer
|
|
id: true
|
|
generator: { strategy: AUTO }
|
|
fields:
|
|
date_opening:
|
|
type: date
|
|
date_closing:
|
|
type: date
|
|
default: null
|
|
nullable: true
|
|
motive:
|
|
type: string
|
|
length: 200
|
|
memo:
|
|
type: text
|
|
manyToOne:
|
|
person:
|
|
targetEntity: Person
|
|
inversedBy: history
|
|
cascade: [refresh]
|