Merge pull request #6072 from owncloud/mssql-fix-schema-migration-oc6

on mssql the schema migration sometimes fails due to an already existing...
This commit is contained in:
Frank Karlitschek 2013-11-28 02:16:16 -08:00
commit d2567129a1
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,8 @@ class MDB2SchemaManager {
*/
public function __construct($conn) {
$this->conn = $conn;
$this->conn->close();
$this->conn->connect();
}
/**