mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-1393: Skipping tables or columns in database driver or SchemaTool #1746
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 (Sep 24, 2011).
Originally assigned to: @Ocramius on GitHub.
Jira issue originally created by user @beberlei:
There should be a sane way to skip sources of errors in SchemaTool and the DatabaseDriver.
@doctrinebot commented on GitHub (Sep 24, 2011):
Comment created by @beberlei:
Idea:
Develop a datastructure of sorts that allows saving information about skipping tables and columns therein when reverse engeneering.
@doctrinebot commented on GitHub (Dec 9, 2011):
Comment created by @guilhermeblanco:
This is not possible unless you take advantage of Topological Sorting to map class dependencies like we do inside of UnitOfWork AFTER creating the ClassMetadata.
The necessity of having this is mandatory because we can never skip classes that have associations to other ones though FK.
You may try that, but it doesn't compensate the effort. I'd rather mark this bug as won't fix, but I'm leaving for you do that. =)
@doctrinebot commented on GitHub (Dec 20, 2011):
Comment created by @guilhermeblanco:
Updating fix version
@malukenho commented on GitHub (Jan 3, 2017):
@Ocramius seems like
won't fixis appropriated.