Skip to content

Commit 71248b7

Browse files
authored
Merge pull request #1391 from phalcon/3.4.x
3.4.10
2 parents a58bd48 + 50d9b50 commit 71248b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/Phalcon/Devtools/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ class Version extends PhVersion
3939
*/
4040
protected static function _getVersion()
4141
{
42-
return [3, 4, 9, 0, 0];
42+
return [3, 4, 10, 0, 0];
4343
}
4444
}

scripts/Phalcon/Mvc/Model/Migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ public static function columnHasSize($type)
936936
return false;
937937
}
938938

939-
if ($type == Column::TYPE_TEXT) {
939+
if (in_array($type, [Column::TYPE_TEXT, Column::TYPE_DATE, Column::TYPE_DATETIME])) {
940940
return false;
941941
}
942942

0 commit comments

Comments
 (0)