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:
parent
2c157da1c2
commit
f3e75c085c
|
@ -88,7 +88,7 @@ class OC_Setup {
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$configuredDatabases = $this->config->getSystemValue('supportedDatabases',
|
$configuredDatabases = $this->config->getSystemValue('supportedDatabases',
|
||||||
array('sqlite', 'mysql', 'pgsql', 'oci', 'mssql'));
|
array('sqlite', 'mysql', 'pgsql', 'oci'));
|
||||||
if(!is_array($configuredDatabases)) {
|
if(!is_array($configuredDatabases)) {
|
||||||
throw new Exception('Supported databases are not properly configured.');
|
throw new Exception('Supported databases are not properly configured.');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue