Is it possible to have two tables with the same name in different schema in MSSQL?
For example dbo.tableX dbo2.tableX ?
If I try it in console doctrine:schema:validate, I get exception "Table with name DB.tableX already exists". It looks as if Doctrine is ignoring database schema.
Each entity is declared by annotation like "@ORM\Table(name="tableX", schema="dbo")"
. I also try "@ORM\Table(name="dbo.TableX")"
, but without success
In production it runs fine, but I cannot build new entities from database...