1
0
mirror of synced 2025-02-20 22:23:14 +03:00

[2.0] DDC-87 - Fix MysqlSchemaManager missing support for Mysql Decimal type

This commit is contained in:
beberlei 2009-10-31 20:50:31 +00:00
parent 932855317f
commit a680970347

View File

@ -188,6 +188,7 @@ class MySqlSchemaManager extends AbstractSchemaManager
case 'double':
case 'real':
case 'numeric':
case 'decimal':
$type = 'decimal';
break;
case 'tinyblob':