Merge pull request #1039 from iampersistent/patch-1
Add yml example to single table inheritance
This commit is contained in:
commit
466808bf48
@ -81,6 +81,8 @@ discriminator column is used.
|
|||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
.. configuration-block::
|
||||||
|
|
||||||
.. code-block:: php
|
.. code-block:: php
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
@ -105,6 +107,21 @@ Example:
|
|||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
MyProject\Model\Person:
|
||||||
|
type: entity
|
||||||
|
inheritanceType: SINGLE_TABLE
|
||||||
|
discriminatorColumn:
|
||||||
|
name: discr
|
||||||
|
type: string
|
||||||
|
discriminatorMap:
|
||||||
|
person: Person
|
||||||
|
employee: Employee
|
||||||
|
|
||||||
|
MyProject\Model\Employee:
|
||||||
|
type: entity
|
||||||
|
|
||||||
Things to note:
|
Things to note:
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user