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
path: root/config
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-12-03 10:52:59 +0300
committerMorris Jobke <hey@morrisjobke.de>2014-12-03 10:52:59 +0300
commit98b28c68a3a21d524382bd00b45ec33e3faadd67 (patch)
tree27b8ae52537b0086ee08a24d6477626851072759 /config
parentaf50df89120343e09f2ed54b2a516dbbae79eb47 (diff)
add proper description what database is supported by CE and EE
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php20
1 files changed, 13 insertions, 7 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 4de3371ea4b..65f473584d0 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -89,8 +89,15 @@ $CONFIG = array(
'version' => '',
/**
- * Identifies the database used with this installation: ``sqlite``, ``mysql``,
- * ``pgsql``, ``oci``, or ``mssql``.
+ * Identifies the database used with this installation. See also config option
+ * ``supportedDatabases``
+ *
+ * Available:
+ * - sqlite (SQLite3 - Community Edition Only)
+ * - mysql (MySQL)
+ * - pgsql (PostgreSQL)
+ * - oci (Oracle - Enterprise Edition Only)
+ * - mssql (Microsoft SQL Server - Enterprise Edition Only)
*/
'dbtype' => 'sqlite',
@@ -841,15 +848,14 @@ $CONFIG = array(
),
/**
- * Database types that are supported for installation. (SQLite is available only in
- * ownCloud Community Edition, oci and mssql only for the Enterprise Edition)
+ * Database types that are supported for installation.
*
* Available:
- * - sqlite (SQLite3)
+ * - sqlite (SQLite3 - Community Edition Only)
* - mysql (MySQL)
* - pgsql (PostgreSQL)
- * - oci (Oracle)
- * - mssql (Microsoft SQL Server)
+ * - oci (Oracle - Enterprise Edition Only)
+ * - mssql (Microsoft SQL Server - Enterprise Edition Only)
*/
'supportedDatabases' => array(
'sqlite',