Files
Phraseanet/lib/conf.d/Doctrine/Entities.UsrList.dcm.yml
2012-01-12 19:52:29 +01:00

34 lines
590 B
YAML

Entities\UsrList:
type: entity
repositoryClass: Repositories\UsrListRepository
table: UsrLists
id:
id:
type: integer
generator:
strategy: AUTO
fields:
name:
type: string
created:
type: datetime
gedmo:
timestampable:
on: create
updated:
type: datetime
gedmo:
timestampable:
on: update
oneToMany:
owners:
targetEntity: UsrListOwner
mappedBy: list
cascade: ["ALL"]
entries:
targetEntity: UsrListEntry
mappedBy: list
cascade: ["ALL"]