Skip to content
Snippets Groups Projects
Commit 2303b095 authored by Vincent Petry's avatar Vincent Petry
Browse files

Merge pull request #12565 from owncloud/config-sample-databases

add proper description what database is supported by CE and EE
parents 8c8c257c 98b28c68
No related branches found
No related tags found
No related merge requests found
......@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment