Skip to content

Commit b28e7f4

Browse files
authored
[Bug] Change default cache driver to database (alexjustesen#1084)
1 parent 107f3cb commit b28e7f4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env.testing

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DB_USERNAME=root
1616
DB_PASSWORD=
1717

1818
BROADCAST_DRIVER=log
19-
CACHE_DRIVER=file
19+
CACHE_DRIVER=database
2020
FILESYSTEM_DISK=local
2121
QUEUE_CONNECTION=database
2222
SESSION_DRIVER=database

config/cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
|
1616
*/
1717

18-
'default' => env('CACHE_DRIVER', 'file'),
18+
'default' => env('CACHE_DRIVER', 'database'),
1919

2020
/*
2121
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)