1
0
mirror of synced 2025-03-21 07:23:55 +03:00
This commit is contained in:
zYne 2007-06-13 22:03:30 +00:00
parent 03e62f95f0
commit c45c3e8331

View File

@ -62,6 +62,18 @@ class Doctrine_Export_Mssql extends Doctrine_Export
$name = $this->conn->quoteIdentifier($name, true);
return $this->conn->standaloneQuery('DROP DATABASE ' . $name, null, true);
}
/**
* Override the parent method.
*
* @return string The string required to be placed between "CREATE" and "TABLE"
* to generate a temporary table, if possible.
*/
public function getTemporaryTableQuery()
{
return '';
}
/**
* alter an existing table
*