Importing entities (Doctrine2/Symfony2) causes Skipper to crash. See crash reports 407 and 408.
Any workaround or solution?
Update:
I was able to narrow down the problem.
It seems that Skipper crashes on an Entity with the following annotations:
/**
*@ORM\ManyToOne(targetEntity="AppBundle\Entity\Vertical",inversedBy="merchantData")
* @ORM\JoinColumn(name="vertical_id", referencedColumnName="id")
* @ORM\OrderBy({"name" = "ASC"})
*/
private $vertical;
After removing the OrderBy annotation, the import runs as expected.