changed getIntegerDeclaration() to handle $field['default']==NULL condition
This commit is contained in:
parent
93e1945144
commit
85299543a3
1 changed files with 7 additions and 2 deletions
|
@ -440,15 +440,20 @@ class Doctrine_DataDict_Mysql extends Doctrine_DataDict
|
||||||
* declare the specified field.
|
* declare the specified field.
|
||||||
*/
|
*/
|
||||||
public function getIntegerDeclaration($name, $field)
|
public function getIntegerDeclaration($name, $field)
|
||||||
{
|
{
|
||||||
|
var_dump($field);
|
||||||
$default = $autoinc = '';
|
$default = $autoinc = '';
|
||||||
if ( ! empty($field['autoincrement'])) {
|
if ( ! empty($field['autoincrement'])) {
|
||||||
$autoinc = ' AUTO_INCREMENT';
|
$autoinc = ' AUTO_INCREMENT';
|
||||||
} elseif (array_key_exists('default', $field)) {
|
} elseif (array_key_exists('default', $field)) {
|
||||||
if ($field['default'] === '') {
|
if ($field['default'] === '') {
|
||||||
$field['default'] = empty($field['notnull']) ? null : 0;
|
$field['default'] = empty($field['notnull']) ? null : 0;
|
||||||
|
}
|
||||||
|
if (is_null($field['default'])) {
|
||||||
|
$default = ' DEFAULT NULL';
|
||||||
|
} else {
|
||||||
|
$default = ' DEFAULT '.$this->conn->quote($field['default']);
|
||||||
}
|
}
|
||||||
$default = ' DEFAULT '.$this->conn->quote($field['default']);
|
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
elseif (empty($field['notnull'])) {
|
elseif (empty($field['notnull'])) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue