Disable MSSQL for new CE installations

Since automatic schema migrations are not yet possible let's disable this for now.
This commit is contained in:
Lukas Reschke 2014-11-28 16:08:38 +01:00
parent 2c157da1c2
commit f3e75c085c
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class OC_Setup {
)
);
$configuredDatabases = $this->config->getSystemValue('supportedDatabases',
array('sqlite', 'mysql', 'pgsql', 'oci', 'mssql'));
array('sqlite', 'mysql', 'pgsql', 'oci'));
if(!is_array($configuredDatabases)) {
throw new Exception('Supported databases are not properly configured.');
}