FIxed the doctrine driver class.
parent
74a13d269e
commit
df8d8ac90d
File diff suppressed because it is too large
Load Diff
|
@ -11,7 +11,7 @@
|
|||
* file.
|
||||
*/
|
||||
|
||||
use Doctrine\DBAL\Driver\PDOMySql\Driver;
|
||||
use Doctrine\DBAL\Driver\PDO\MySQL\Driver;
|
||||
use Monarc\Core\Service\DoctrineCacheServiceFactory;
|
||||
use Monarc\Core\Service\DoctrineLoggerFactory;
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ return array(
|
|||
'doctrine' => array(
|
||||
'connection' => array(
|
||||
'orm_default' => array(
|
||||
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
|
||||
'driverClass' => 'Doctrine\DBAL\Driver\PDO\MySQL\Driver',
|
||||
'params' => array(
|
||||
'host' => 'localhost',
|
||||
'port' => 3306,
|
||||
|
@ -34,7 +34,7 @@ return array(
|
|||
),
|
||||
),
|
||||
'orm_cli' => array(
|
||||
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
|
||||
'driverClass' => 'Doctrine\DBAL\Driver\PDO\MySQL\Driver',
|
||||
'params' => array(
|
||||
'host' => 'localhost',
|
||||
'port' => 3306,
|
||||
|
|
Loading…
Reference in New Issue