Commit c45c3e83 authored by zYne's avatar zYne

--no commit message

--no commit message
parent 03e62f95
...@@ -62,6 +62,18 @@ class Doctrine_Export_Mssql extends Doctrine_Export ...@@ -62,6 +62,18 @@ class Doctrine_Export_Mssql extends Doctrine_Export
$name = $this->conn->quoteIdentifier($name, true); $name = $this->conn->quoteIdentifier($name, true);
return $this->conn->standaloneQuery('DROP DATABASE ' . $name, null, 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 * alter an existing table
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment