]> source.dussan.org Git - nextcloud-server.git/commitdiff
add proper description what database is supported by CE and EE
authorMorris Jobke <hey@morrisjobke.de>
Wed, 3 Dec 2014 07:52:59 +0000 (08:52 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Wed, 3 Dec 2014 07:52:59 +0000 (08:52 +0100)
config/config.sample.php

index 4de3371ea4b45757f5c72a386f7688e61162aad6..65f473584d0f1a8d1e889cbb5a80d2c3d172f2a9 100644 (file)
@@ -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',