Home Documentation Download Pricing Buy Now

[SOLVED] changeTrackingPolicy annotation exported to the wrong place?

0 votes

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

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

1 Answer

+1 vote
 
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.

answered Mar 21, 2014 by Martin Freki Stradej Skipper developer (74,840 points)
edited Apr 10, 2014 by Martin Freki Stradej

Thanks for the fix, not it works fine!

...