Insolita / yii2-migrik

Yii2 Gii-tools for create migration files
106 stars 29 forks source link

Error DateTime #25

Closed myafk closed 7 years ago

myafk commented 7 years ago

http://prnt.sc/dxk7ld

I guess that the error due to the fact that function createFromFormat goes an int, but it takes only a string. http://php.net/manual/ru/datetime.createfromformat.php

When i change: $uPrefix = (int)preg_replace('~[^0-9]~', '', $prefix); To: $uPrefix = preg_replace('~[^0-9]~', '', $prefix); Error has been fixed.

Insolita commented 7 years ago

24