diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-11-28 16:08:38 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-11-28 19:19:48 +0100 |
commit | b122b285c9d075b2aff7f86a7b0a1a1fe158de07 (patch) | |
tree | 4ec608789392cc9d41469b0a6181fc9f1d76701d | |
parent | 9b414d81d867df1ce56ec2c8b4c5211ae625c12e (diff) | |
download | nextcloud-server-b122b285c9d075b2aff7f86a7b0a1a1fe158de07.tar.gz nextcloud-server-b122b285c9d075b2aff7f86a7b0a1a1fe158de07.zip |
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
-rw-r--r-- | lib/private/setup.php | 4 |
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.'); } |