aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/setup.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-11-28 16:08:38 +0100
committerLukas Reschke <lukas@owncloud.com>2014-11-28 16:08:38 +0100
commitf3e75c085c55640f0e9f6642c41a81ead20e0a69 (patch)
tree4ea8265986b04bd90e6f6d5f554114240688eb5f /lib/private/setup.php
parent2c157da1c2fece318cab652b56d36c46d50f5e3a (diff)
downloadnextcloud-server-f3e75c085c55640f0e9f6642c41a81ead20e0a69.tar.gz
nextcloud-server-f3e75c085c55640f0e9f6642c41a81ead20e0a69.zip
Disable MSSQL for new CE installations
Since automatic schema migrations are not yet possible let's disable this for now.
Diffstat (limited to 'lib/private/setup.php')
-rw-r--r--lib/private/setup.php2
1 files changed, 1 insertions, 1 deletions
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.');
}