When i cut and paste from one entity to another one a column, if this column had index i got a bug : index still believes in old entity.
Example :
-- tableA --
columnA
columnB
columnC INDEX(mycolumnindex)
-- tableB --
columnD
I cut and paste columnC from tableA to tableB, directly from the graph view. I got :
-- tableA --
columnA
columnB
INDEX(mycolumnindex)
-- tableB --
columnD
columnC
So, when i export after, i got this issue in Doctrine :
indexes={@ORM\Index(name="mycolumnindex", columns={})}
That cause a Doctrine error which is sometimes hard to find.
Thanks for support!