This commit is contained in:
parent
141a95669d
commit
6348e5f709
1 changed files with 16 additions and 4 deletions
|
@ -33,6 +33,19 @@ Doctrine::autoload('Doctrine_Connection_Module');
|
||||||
*/
|
*/
|
||||||
class Doctrine_Export extends Doctrine_Connection_Module
|
class Doctrine_Export extends Doctrine_Connection_Module
|
||||||
{
|
{
|
||||||
|
protected $valid_default_values = array(
|
||||||
|
'text' => '',
|
||||||
|
'boolean' => true,
|
||||||
|
'integer' => 0,
|
||||||
|
'decimal' => 0.0,
|
||||||
|
'float' => 0.0,
|
||||||
|
'timestamp' => '1970-01-01 00:00:00',
|
||||||
|
'time' => '00:00:00',
|
||||||
|
'date' => '1970-01-01',
|
||||||
|
'clob' => '',
|
||||||
|
'blob' => '',
|
||||||
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* drop an existing database
|
* drop an existing database
|
||||||
* (this method is implemented by the drivers)
|
* (this method is implemented by the drivers)
|
||||||
|
@ -658,10 +671,9 @@ class Doctrine_Export extends Doctrine_Connection_Module
|
||||||
$field['default'] = empty($field['notnull'])
|
$field['default'] = empty($field['notnull'])
|
||||||
? null : $this->valid_default_values[$field['type']];
|
? null : $this->valid_default_values[$field['type']];
|
||||||
|
|
||||||
if ($field['default'] === ''
|
if ($field['default'] === '' &&
|
||||||
&& ($conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_EMPTY_TO_NULL)
|
($conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_EMPTY_TO_NULL)) {
|
||||||
) {
|
$field['default'] = null;
|
||||||
$field['default'] = ' ';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue