fixed dropTable()
This commit is contained in:
parent
bbd9797da2
commit
997d066f02
1 changed files with 13 additions and 3 deletions
|
@ -55,17 +55,27 @@ class Doctrine_Export extends Doctrine_Connection_Module
|
||||||
{
|
{
|
||||||
throw new Doctrine_Export_Exception('Drop database not supported by this driver.');
|
throw new Doctrine_Export_Exception('Drop database not supported by this driver.');
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* dropTableSql
|
||||||
|
* drop an existing table
|
||||||
|
*
|
||||||
|
* @param string $table name of table that should be dropped from the database
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function dropTableSql($table)
|
||||||
|
{
|
||||||
|
return 'DROP TABLE ' . $this->conn->quoteIdentifier($table);
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* dropTable
|
* dropTable
|
||||||
* drop an existing table
|
* drop an existing table
|
||||||
*
|
*
|
||||||
* @param string $table name of table that should be dropped from the database
|
* @param string $table name of table that should be dropped from the database
|
||||||
* @throws PDOException
|
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function dropTable($table)
|
public function dropTable($table)
|
||||||
{
|
{
|
||||||
$this->conn->execute('DROP TABLE ' . $table);
|
$this->conn->execute($this->dropTableSql($table));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1004,7 +1014,7 @@ class Doctrine_Export extends Doctrine_Connection_Module
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/** Not needed anymore ? createTable() now handles foreign keys
|
/** Not needed anymore ? createTable() now handles foreign keys
|
||||||
|
|
||||||
foreach ($fks as $tableName => $fk) {
|
foreach ($fks as $tableName => $fk) {
|
||||||
foreach ($fk as $k => $definition) {
|
foreach ($fk as $k => $definition) {
|
||||||
if (is_array($definition)) {
|
if (is_array($definition)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue