2010-09-24 01:10:31 +04:00
|
|
|
Doctrine\Tests\ORM\Mapping\Animal:
|
|
|
|
type: entity
|
|
|
|
inheritanceType: SINGLE_TABLE
|
|
|
|
discriminatorMap:
|
|
|
|
cat: Cat
|
2011-11-28 23:01:55 +04:00
|
|
|
dog: Dog
|
2012-07-08 11:06:52 +04:00
|
|
|
discriminatorColumn:
|
|
|
|
type: string
|
|
|
|
name: discr
|
|
|
|
length: 32
|
2011-11-28 23:01:55 +04:00
|
|
|
id:
|
|
|
|
id:
|
|
|
|
type: integer
|
|
|
|
generator:
|
|
|
|
strategy: CUSTOM
|
|
|
|
customIdGenerator:
|
2012-07-08 11:06:52 +04:00
|
|
|
class: stdClass
|