diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-02-27 08:59:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-27 08:59:25 +0100 |
commit | cd3eb80ef4e9613e16430cb4c53332ac3cdae97a (patch) | |
tree | 0e8d1c2805751d989345602250fe352f7d303c52 | |
parent | ad2eefe89639b2737b728b3faa1bf9da5ff82d55 (diff) | |
parent | 7b8ff8d858abd123d103dfad31f2cb733909a993 (diff) | |
download | nextcloud-server-cd3eb80ef4e9613e16430cb4c53332ac3cdae97a.tar.gz nextcloud-server-cd3eb80ef4e9613e16430cb4c53332ac3cdae97a.zip |
Merge pull request #8548 from BernieO/patch-1
fix: change 'sqlite' to 'sqlite3'
-rw-r--r-- | config/config.sample.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index e91452a0720..8f5b1a2cee3 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -92,13 +92,13 @@ $CONFIG = array( * ``supportedDatabases`` * * Available: - * - sqlite (SQLite3) + * - sqlite3 (SQLite3) * - mysql (MySQL/MariaDB) * - pgsql (PostgreSQL) * - * Defaults to ``sqlite`` + * Defaults to ``sqlite3`` */ -'dbtype' => 'sqlite', +'dbtype' => 'sqlite3', /** * Your host server name, for example ``localhost``, ``hostname``, |