chill-bundles/Resources/config/doctrine/PersonHistoryFile.orm.yml

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]