0 votes

We use camel-case properties in Skipper. Doctrine (current version) creates per default underscore column names when properties are defined in came-case und no @ORM\Column(name="...") is defined.
When indices are defined in Skipper, Skipper uses the fieldname (camel-case) for columns-names which results in an "column not found" error when indices are created.

in Solved by (140 points)
recategorized by

1 Answer

+1 vote

This is not a bug. You have wrongly configured Skipper or Doctrine2

Depending on what you need you have to configure both (Doctrine2 and Skipper) to use the same case formatting.

In case that you configured Dcotrine to use underline you need to configure also Skipper module to export names in underline format.

enter image description here

by Skipper developer (141k points)

Great, thanks!