diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-12-03 08:52:59 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-03 13:14:58 +0100 |
commit | 5fe7781452e61042d863eda72afc272ccb5b14ad (patch) | |
tree | a7a0075415fad3871ac52db6f5091ada0cb621f4 | |
parent | 8fc4f67f1475291672921de4e0bdb419747e8ec6 (diff) | |
download | nextcloud-server-5fe7781452e61042d863eda72afc272ccb5b14ad.tar.gz nextcloud-server-5fe7781452e61042d863eda72afc272ccb5b14ad.zip |
add proper description what database is supported by CE and EE
-rw-r--r-- | config/config.sample.php | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index c073d945675..46b52586526 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -83,8 +83,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', @@ -808,15 +815,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', |