mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
Doctrine schema update filter problem #5162
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 @PlamenVasilev on GitHub (Jun 21, 2016).
Originally assigned to: @Ocramius on GitHub.
I have a problem with excluding table from schema with symfony 2.8.5
According to this http://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html#manual-tables
I can exclude tables form schema diff and ignore them
When I set this filter to specific table
and then run
php app/console doctrine:schema:update --dump-sqlI see SQL for creation of the excluded table.
When I comment the schema_filter .. no DB changes will be made.
This option should not produce create/alter/drop statements for excluded tables or I'm wrong?
I have wrote to Symfony about this, by they said that this is doctrine problem https://github.com/symfony/symfony/issues/19076
@Ocramius commented on GitHub (Jun 21, 2016):
Please report it on DoctrineBundle unless you can reproduce it with just the ORM.