mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #440] [CLOSED] The schema tool now doesn't add a foreign constraint when subclassess of... #8198
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?
📋 Pull Request Information
Original PR: https://github.com/doctrine/orm/pull/440
Author: @sroddy
Created: 9/8/2012
Status: ❌ Closed
Base:
master← Head:fix_STI_schema_tool📝 Commits (2)
0fa3bffadedd failing test for PR #440daaa87bThe schema tool now doesn't add a foreign constraint when subclassess of a STI use the same field to map relations with entities of different classes📊 Changes
7 files changed (+357 additions, -12 deletions)
View changed files
📝
lib/Doctrine/ORM/Tools/SchemaTool.php(+38 -12)➕
tests/Doctrine/Tests/Models/SingleTableInheritanceType/Structure.php(+22 -0)➕
tests/Doctrine/Tests/Models/SingleTableInheritanceType/User.php(+124 -0)➕
tests/Doctrine/Tests/Models/SingleTableInheritanceType/UserFollowedObject.php(+32 -0)➕
tests/Doctrine/Tests/Models/SingleTableInheritanceType/UserFollowedStructure.php(+54 -0)➕
tests/Doctrine/Tests/Models/SingleTableInheritanceType/UserFollowedUser.php(+55 -0)📝
tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php(+32 -0)📄 Description
... a STI use the same field to map relations with entities of different classes
It seems that there are no particular side-effects in mapping different relationship using the same table column name in different subclasses of a STI hierarchy.
Eg. Tag superclass of BookTag (id, object_id, comment) and MovieTag (id, object_id, comment), so having two attributes $book and $movie mapped to the same object_id field with @JoinColumn annotation
I wasn't sure about this so I tested to see if there were errors. And I was surprised that everything runs without any particular problem.
Moreover this is a really interesting (wanted? unwanted?) feature, very useful if you have huge tables that need to be joined with other table using the discriminator and object_id columns, or if you have some kind of logging class and you need to keep the table efficient and small. The only problem is that the schema generator always inserts a foreign column constraint (probably the last specified) when generating these kind of Entities.
This PR ensures that the foreign key is not added if there are at least two different classes mapped on the same field of a db table.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.