30 lines
720 B
YAML
30 lines
720 B
YAML
|
Doctrine\Tests\Models\Company\CompanyContract:
|
||
|
type: entity
|
||
|
table: company_contracts
|
||
|
inheritanceType: SINGLE_TABLE
|
||
|
discriminatorMap:
|
||
|
fix: CompanyFixContract
|
||
|
flexible: CompanyFlexContract
|
||
|
flexultra: CompanyFlexUltraContract
|
||
|
entityListeners:
|
||
|
ContractSubscriber:
|
||
|
preFlush: [preFlushHandler]
|
||
|
postLoad: [postLoadHandler]
|
||
|
|
||
|
postPersist: [postPersistHandler]
|
||
|
prePersist: [prePersistHandler]
|
||
|
|
||
|
postUpdate: [postUpdateHandler]
|
||
|
preUpdate: [preUpdateHandler]
|
||
|
|
||
|
postRemove: [postRemoveHandler]
|
||
|
preRemove: [preRemoveHandler]
|
||
|
|
||
|
id:
|
||
|
id:
|
||
|
type: integer
|
||
|
generator:
|
||
|
strategy: AUTO
|
||
|
fields:
|
||
|
completed:
|
||
|
type: boolean
|