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

25 lines
722 B
YAML

Chill\EventBundle\Entity\Participation:
type: entity
table: chill_event_participation
repositoryClass: Chill\EventBundle\Repository\ParticipationRepository
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fields:
lastUpdate:
type: datetime
manyToOne:
event:
targetEntity: Chill\EventBundle\Entity\Event
inversedBy: participations
person:
targetEntity: Chill\PersonBundle\Entity\Person
role:
targetEntity: Chill\EventBundle\Entity\Role
status:
targetEntity: Chill\EventBundle\Entity\Status
lifecycleCallbacks: { }