hello,
i have configured doctrine with:
namingstrategy: doctrine.orm.namingstrategy.underscore
so properties in php/or skipper which i usually write camel cased will be mapped to underscored column names.
now i would like to define some indexes in skipper. but i didnt found a possibility to set this naming strategy in skipper so it generates index definitions like so:
@ORM\Index(name="postalCode", columns={"postalCode"}),
where i need it that way:
@ORM\Index(name="postalCode", columns={"postal_code"}),
i am aware of the possibility to set the column name for every column, but with many fields this is very redundant and error prone.
greetings peter