Skip to content

Commit

Permalink
Update default datasource file.
Browse files Browse the repository at this point in the history
Full classnames are required for now.
  • Loading branch information
markstory committed Apr 7, 2013
1 parent b5d7264 commit baffc96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions App/Config/datasources.default.php
Expand Up @@ -66,7 +66,7 @@
* by all models.
*/
Configure::write('Datasource.default', [
'datasource' => 'Database/Mysql',
'datasource' => 'Cake\Database\Driver\Mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'user',
Expand All @@ -81,7 +81,7 @@
* while running unit and integration tests.
*/
Configure::write('Datasource.test', [
'datasource' => 'Database/Mysql',
'datasource' => 'Cake\Database\Driver\Mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'user',
Expand Down
Expand Up @@ -58,7 +58,7 @@
* by all models.
*/
Configure::write('Datasource.default', [
'datasource' => 'Database/Mysql',
'datasource' => 'Cake\Datasource\Driver\Mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'user',
Expand All @@ -73,7 +73,7 @@
* while running unit and integration tests.
*/
Configure::write('Datasource.test', [
'datasource' => 'Database/Mysql',
'datasource' => 'Cake\Datasource\Driver\Mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'user',
Expand Down

0 comments on commit baffc96

Please sign in to comment.