Browse Source

Add connection settings to cache config.

Taylor Otwell 9 years ago
parent
commit
8f6db28661
1 changed files with 3 additions and 1 deletions
  1. 3 1
      config/cache.php

+ 3 - 1
config/cache.php

@@ -39,6 +39,7 @@ return [
 		'database' => [
 			'driver' => 'database',
 			'table'  => 'cache',
+			'connection' => null,
 		],
 
 		'file' => [
@@ -54,7 +55,8 @@ return [
 		],
 
 		'redis' => [
-			'driver' => 'redis'
+			'driver' => 'redis',
+			'connection' => 'default',
 		],
 
 	],