Configure default database connections for Forge and Homestead.

This commit is contained in:
Taylor Otwell
2014-05-10 20:05:56 -05:00
parent 6983f4d177
commit ca651a7815
2 changed files with 51 additions and 4 deletions

View File

@@ -55,8 +55,8 @@ return array(
'mysql' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'database',
'username' => 'root',
'database' => 'forge',
'username' => 'forge',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
@@ -66,8 +66,8 @@ return array(
'pgsql' => array(
'driver' => 'pgsql',
'host' => 'localhost',
'database' => 'database',
'username' => 'root',
'database' => 'forge',
'username' => 'forge',
'password' => '',
'charset' => 'utf8',
'prefix' => '',