Merge pull request #8548 from BernieO/patch-1

fix: change 'sqlite' to 'sqlite3'
pull/8557/head
Roeland Jago Douma 7 years ago committed by GitHub
commit cd3eb80ef4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      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``,

Loading…
Cancel
Save