0 votes

Received by email:

First time that entities are exported, I get 2 Column annotations:

/**
 * @ORM\Column(type="string", length=255, nullable=true)
 * @ORM\Column(test1={item1={method="asdasd"}})
 */
private $name;

Next and following times, second Column annotation is removed:

/**
 * @ORM\Column(type="string", length=255, nullable=true)
 * 
 */
private $name;
in Solved by Skipper developer (141k points)

we successfully localized and fixed the bug. Problem was that custom attributes were exported in standalone @Column instead of together with the rest of @Column attributes. Based on this during merging process with existing code the second annotation was ignored.

Will be fixed in next version

1 Answer

0 votes
Best answer

Bugfix available in version 3.0.2.1140

http://support.skipper18.com/402/downloads-skipper-beta

by Skipper developer (141k points)