]> source.dussan.org Git - nextcloud-server.git/commitdiff
Disable MSSQL for new CE installations
authorLukas Reschke <lukas@owncloud.com>
Fri, 28 Nov 2014 15:08:38 +0000 (16:08 +0100)
committerLukas Reschke <lukas@owncloud.com>
Fri, 28 Nov 2014 15:08:38 +0000 (16:08 +0100)
Since automatic schema migrations are not yet possible let's disable this for now.

lib/private/setup.php

index 45c97bbd22574fb311c5b255e95d2e2b540c9c1b..f9edf9be6797b645c0d3e412cf8a5f966b459f55 100644 (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.');
                }