changed type to decimal
This commit is contained in:
parent
95b3eb2c75
commit
4b01eaf6cc
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue