Merged r3561 into 0.10
This commit is contained in:
parent
6fda95bfa7
commit
72316541c4
1 changed files with 5 additions and 4 deletions
|
@ -1076,10 +1076,11 @@ class Doctrine_Export extends Doctrine_Connection_Module
|
||||||
$connectionName = Doctrine_Manager::getInstance()->getConnectionName($connection);
|
$connectionName = Doctrine_Manager::getInstance()->getConnectionName($connection);
|
||||||
|
|
||||||
if ( ! isset($connections[$connectionName])) {
|
if ( ! isset($connections[$connectionName])) {
|
||||||
$connections[$connectionName] = array();
|
$connections[$connectionName] = array(
|
||||||
$connections[$connectionName]['create_tables'] = array();
|
'create_tables' => array(),
|
||||||
$connections[$connectionName]['create_sequences'] = array();
|
'create_sequences' => array(),
|
||||||
$connections[$connectionName]['alters'] = array();
|
'alters' => array()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = $this->exportClassesSql(array($class));
|
$sql = $this->exportClassesSql(array($class));
|
||||||
|
|
Loading…
Add table
Reference in a new issue