From b122b285c9d075b2aff7f86a7b0a1a1fe158de07 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. Conflicts: lib/private/setup.php --- lib/private/setup.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/private/setup.php b/lib/private/setup.php index 2d6cede42bc..6fb5ac2d62d 100644 --- a/lib/private/setup.php +++ b/lib/private/setup.php @@ -90,7 +90,9 @@ class OC_Setup { 'name' => 'MS SQL' ) ); - $configuredDatabases = $this->config->getSystemValue('supportedDatabases', array('sqlite', 'mysql', 'pgsql', 'oci', 'mssql')); + + $configuredDatabases = $this->config->getSystemValue('supportedDatabases', + array('sqlite', 'mysql', 'pgsql')); if(!is_array($configuredDatabases)) { throw new Exception('Supported databases are not properly configured.'); } -- 2.39.5