changed type to decimal

This commit is contained in:
Oliver Gasser 2013-11-12 13:47:47 +01:00
parent 95b3eb2c75
commit 4b01eaf6cc
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ class MDB2SchemaReader {
} else {
$options['default'] = '';
}
if ($type == 'integer' || $type == 'numeric') {
if ($type == 'integer' || $type == 'decimal') {
$options['default'] = 0;
} elseif ($type == 'boolean') {
$options['default'] = false;