[SOLVED] changeTrackingPolicy annotation exported to the wrong place?

0 votes
asked Mar 21, 2014 in Solved by pppdns (270 points)
recategorized Apr 10, 2014 by Martin Freki Stradej

When I set changeTrackingPolicy to DEFERRED_EXPLICIT and export the schema, I get the following error:

AnnotationException: [Creation Error] The annotation @ORM\Table declared on class Acme\DemoBundle\Entity\Comment does not have a property named "changeTrackingPolicy". Available properties: name, schema, indexes, uniqueConstraints, options

expected result:

@ORM\Table(name="comment")
@ORM\ChangeTrackingPolicy("DEFERRED_EXPLICIT")

current result:

@ORM\Table(changeTrackingPolicy="DEFERRED_EXPLICIT", name="comment")

Has anyone else faced this problem or is it just me?
thanks in advance

1 Answer

+1 vote
answered Mar 21, 2014 by Martin Freki Stradej Skipper developer (74,840 points)
edited Apr 10, 2014 by Martin Freki Stradej
 
Best answer

EDIT: Fix was released in the public version 2.3.5:
http://www.orm-designer.com/download-orm-designer

Old post:
We have fixed this today. Fix is available for download as a beta version here:
http://support.orm-designer.com/402/downloads-orm-designer2-beta

Please confirm if it is working as expected.

commented Mar 31, 2014 by pppdns (270 points)

Thanks for the fix, not it works fine!

...