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

in Solved by (270 points)
recategorized by

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.

by Skipper developer (74.8k points)
edited by

Thanks for the fix, not it works fine!