From: Lukas Reschke Date: Fri, 28 Nov 2014 15:08:38 +0000 (+0100) Subject: Disable MSSQL for new CE installations X-Git-Tag: v8.0.0alpha1~208^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f3e75c085c55640f0e9f6642c41a81ead20e0a69;p=nextcloud-server.git Disable MSSQL for new CE installations Since automatic schema migrations are not yet possible let's disable this for now. --- diff --git a/lib/private/setup.php b/lib/private/setup.php index 45c97bbd225..f9edf9be679 100644 --- a/lib/private/setup.php +++ b/lib/private/setup.php @@ -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.'); }