Closed Neirda24 closed 4 years ago
Ok it was my mistake sorry... The thing was: I am using postgres and on my entities I used the schema
key so the table name (doctrine point of view) was not view_*
but schema.view_*
So I had to update my regex from #^(?!view_).*#
to #^(?![^\.]*\.?view_).*#
(Original request here)
Hi. I have several entities with a readOnly mode
These are SQL views also ignored by doctrine to not mapped the schema diff
but when trying to insert the fixtures it fails with either :
or
any clues ?
Thanks in advance