Use travis as user instead root within DSN

This commit is contained in:
Taufan Aditya
2013-05-05 00:10:17 +07:00
parent 305028b5c8
commit 51de757140

View File

@ -3,7 +3,7 @@
return array( return array(
'mysql' => array( 'mysql' => array(
'dsn' => 'mysql:host=127.0.0.1;dbname=yiitest', 'dsn' => 'mysql:host=127.0.0.1;dbname=yiitest',
'username' => 'root', 'username' => 'travis',
'password' => '', 'password' => '',
'fixture' => __DIR__ . '/mysql.sql', 'fixture' => __DIR__ . '/mysql.sql',
), ),