DateInterval Type Mapping

0 votes
asked Oct 30, 2015 in Feature Request by makarenkoa (140 points)

Doctrine mapping supports DateInterval type: http://doctrine-orm.readthedocs.org/projects/doctrine-dbal/en/latest/reference/types.html#dateinterval

It doesn't seem to exist in Skipper v3.2.4.1256

1 Answer

0 votes
answered Oct 30, 2015 by ludek.vodicka Skipper developer (140,450 points)

Hi,

thank you for feedback. We will add this datatype to next version.

As temporary solution you can add this datatype to Skipper configuration file by yourself.

Simply open file Doctrine2.skipper.cfg.xml located in SkipperDirectory/Configurations/Frameworks and add following code to line 205 (inside data-types element)

<data-type name="dateinterval"/>

This will tell Skipper about new datatype.

...