diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 621e5df80b3..78bbfff8c85 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -801,6 +801,23 @@ $CONFIG = array( ), /** + * Database types that are supported for installation + * Available: + * - sqlite (SQLite3) + * - mysql (MySQL) + * - pgsql (PostgreSQL) + * - oci (Oracle) + * - mssql (Microsoft SQL Server) + */ +'supportedDatabases' => array( + 'sqlite', + 'mysql', + 'pgsql', + 'oci', + 'mssql' +), + +/** * Custom CSP policy, changing this will overwrite the standard policy */ 'custom_csp_policy' => |