Cleaning up some default values.

This commit is contained in:
Taylor Otwell 2014-05-16 10:44:00 -04:00
parent 0935b0422e
commit 6f005892b0
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@
'host' => 'localhost', 'host' => 'localhost',
'database' => 'homestead', 'database' => 'homestead',
'username' => 'homestead', 'username' => 'homestead',
'password' => '', 'password' => 'secret',
'charset' => 'utf8', 'charset' => 'utf8',
'collation' => 'utf8_unicode_ci', 'collation' => 'utf8_unicode_ci',
'prefix' => '', 'prefix' => '',
@ -36,7 +36,7 @@
'host' => 'localhost', 'host' => 'localhost',
'database' => 'homestead', 'database' => 'homestead',
'username' => 'homestead', 'username' => 'homestead',
'password' => '', 'password' => 'secret',
'charset' => 'utf8', 'charset' => 'utf8',
'prefix' => '', 'prefix' => '',
'schema' => 'public', 'schema' => 'public',

View File

@ -26,7 +26,7 @@
$env = $app->detectEnvironment(array( $env = $app->detectEnvironment(array(
'local' => array('your-machine-name'), 'local' => array('homestead'),
)); ));