This commit is contained in:
parent
a3bc368b50
commit
216cdde6a9
1 changed files with 5 additions and 2 deletions
|
@ -373,8 +373,11 @@ class Doctrine_DataDict_Mysql extends Doctrine_DataDict
|
||||||
|
|
||||||
$length = ((int) $length == 0) ? null : (int) $length;
|
$length = ((int) $length == 0) ? null : (int) $length;
|
||||||
|
|
||||||
|
if ($values === null) {
|
||||||
return array('type' => $type, 'length' => $length, 'unsigned' => $unsigned, 'fixed' => $fixed, 'values' => $values);
|
return array('type' => $type, 'length' => $length, 'unsigned' => $unsigned, 'fixed' => $fixed);
|
||||||
|
} else {
|
||||||
|
return array('type' => $type, 'length' => $length, 'unsigned' => $unsigned, 'fixed' => $fixed, 'values' => $values);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Obtain DBMS specific SQL code portion needed to set the CHARACTER SET
|
* Obtain DBMS specific SQL code portion needed to set the CHARACTER SET
|
||||||
|
|
Loading…
Add table
Reference in a new issue