diff --git a/config/config.php b/config/config.php index 7576118..c2e392a 100644 --- a/config/config.php +++ b/config/config.php @@ -25,6 +25,7 @@ 'host' => '127.0.0.1', 'username' => 'root', 'password' => '', + 'dbname' => '', 'port' => 3306 ], 'redis' => [ diff --git a/src/Cache/Factory/DesarrollaCacheFactory.php b/src/Cache/Factory/DesarrollaCacheFactory.php index 50e281d..ed28969 100644 --- a/src/Cache/Factory/DesarrollaCacheFactory.php +++ b/src/Cache/Factory/DesarrollaCacheFactory.php @@ -172,6 +172,7 @@ protected function createMysqlDriver() $this->config['mysql']['host'], $this->config['mysql']['username'], $this->config['mysql']['password'], + $this->config['mysql']['dbname'], $this->config['mysql']['port'] ); }