treat numeric as an alias for decimal

This commit is contained in:
Oliver Gasser 2013-11-12 13:55:06 +01:00
parent 4b01eaf6cc
commit 53f17a71d1
1 changed files with 3 additions and 0 deletions

View File

@ -150,6 +150,9 @@ class MDB2SchemaReader {
case 'timestamp':
$type = 'datetime';
break;
case 'numeric':
$type = 'decimal';
break;
}
break;
case 'length':