mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 08:14:24 +00:00
The relationship between Activity and Reasons is now many-to-many. Some improvement in show activity layout. refs #4 #7
32 lines
815 B
YAML
32 lines
815 B
YAML
Chill\ActivityBundle\Entity\Activity:
|
|
type: entity
|
|
table: null
|
|
id:
|
|
id:
|
|
type: integer
|
|
id: true
|
|
generator:
|
|
strategy: AUTO
|
|
fields:
|
|
date:
|
|
type: datetime
|
|
durationTime:
|
|
type: time
|
|
remark:
|
|
type: text
|
|
attendee:
|
|
type: boolean
|
|
manyToMany:
|
|
reasons:
|
|
targetEntity: Chill\ActivityBundle\Entity\ActivityReason
|
|
manyToOne:
|
|
user:
|
|
targetEntity: Chill\MainBundle\Entity\User
|
|
scope:
|
|
targetEntity: Chill\MainBundle\Entity\Scope
|
|
type:
|
|
targetEntity: Chill\ActivityBundle\Entity\ActivityType
|
|
person:
|
|
targetEntity: Chill\PersonBundle\Entity\Person
|
|
lifecycleCallbacks: { }
|