mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-3270: abstract class database entity generation #4049
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Aug 23, 2014).
Originally assigned to: @Ocramius on GitHub.
Jira issue originally created by user leckie:
I create an abstract class A using @ORM annotations, then create class B which is a subclass of class A. When I use these to update the mysql database, however, a table for class A was also generated, which shouldn't have happened(because class A is an abstract class).
@doctrinebot commented on GitHub (Oct 19, 2014):
Comment created by @ocramius:
abstract types in the ORM are called
MappedSuperclasses. The fact that a class isabstractdoesn't mean that it has no concrete table representing it.@doctrinebot commented on GitHub (Oct 19, 2014):
Issue was closed with resolution "Invalid"