Merge pull request #390 from jeremyquinton/fix-defaults
Changed the default db adapter
This commit is contained in:
commit
6e608b47ed
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'default' => env('DB_TYPE', 'mysql'),
|
||||
'default' => env('DB_TYPE', 'pgsql'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in New Issue