From f3e75c085c55640f0e9f6642c41a81ead20e0a69 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 28 Nov 2014 16:08:38 +0100 Subject: [PATCH] Disable MSSQL for new CE installations Since automatic schema migrations are not yet possible let's disable this for now. --- lib/private/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.'); } -- 2.39.5