1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.Company.CompanyContract.dcm.yml

32 lines
709 B
YAML
Raw Normal View History

2012-08-05 23:50:56 +04:00
Doctrine\Tests\Models\Company\CompanyContract:
type: entity
table: company_contracts
inheritanceType: SINGLE_TABLE
discriminatorMap:
fix: CompanyFixContract
flexible: CompanyFlexContract
flexultra: CompanyFlexUltraContract
2012-08-05 23:50:56 +04:00
entityListeners:
2012-10-07 01:13:51 +04:00
CompanyContractListener:
preFlush: [preFlushHandler]
postLoad: [postLoadHandler]
2012-08-05 23:50:56 +04:00
postPersist: [postPersistHandler]
prePersist: [prePersistHandler]
2012-08-05 23:50:56 +04:00
postUpdate: [postUpdateHandler]
preUpdate: [preUpdateHandler]
2012-08-05 23:50:56 +04:00
postRemove: [postRemoveHandler]
preRemove: [preRemoveHandler]
2012-08-05 23:50:56 +04:00
id:
id:
type: integer
generator:
strategy: AUTO
fields:
completed:
type: boolean