Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-11-28 18:08:38 +0300
committerLukas Reschke <lukas@owncloud.com>2014-11-28 21:19:48 +0300
commitb122b285c9d075b2aff7f86a7b0a1a1fe158de07 (patch)
tree4ec608789392cc9d41469b0a6181fc9f1d76701d /lib/private/setup.php
parent9b414d81d867df1ce56ec2c8b4c5211ae625c12e (diff)
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
Diffstat (limited to 'lib/private/setup.php')
-rw-r--r--lib/private/setup.php4
1 files changed, 3 insertions, 1 deletions
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.');
}