Class Table Inheritance is one of several techniques for designing SQL tables in situations where subclasses that extend classes would apply if SQL had a mechanism for inheritance, which it doesn't.
This is my base/parent entity, setup so its children are using their own tables. /** * @ORM\Entity * @ORM\Table(name="…
symfony doctrine-orm symfony-2.3 single-table-inheritance class-table-inheritanceI am developing a travel management application. The design in question is something like following : Each person in a tour …
database-design hibernate-mapping circular-dependency erd class-table-inheritance