Merge pull request #390 from jeremyquinton/fix-defaults

Changed the default db adapter
This commit is contained in:
Sam Bell 2018-07-02 20:31:34 +01:00 committed by GitHub
commit 6e608b47ed
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ APP_CIPHER=AES-256-CBC
APP_KEY=
APP_TIMEZONE=
DB_TYPE=mysql
DB_TYPE=pgsql
DB_HOST=db
DB_PORT=3306
DB_DATABASE=attendize

View File

@ -26,7 +26,7 @@ return [
|
*/
'default' => env('DB_TYPE', 'mysql'),
'default' => env('DB_TYPE', 'pgsql'),
/*
|--------------------------------------------------------------------------