1
0
mirror of synced 2025-02-21 22:53:15 +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 'double':
case 'real': case 'real':
case 'numeric': case 'numeric':
case 'decimal':
$type = 'decimal'; $type = 'decimal';
break; break;
case 'tinyblob': case 'tinyblob':