diff --git a/app/config/database.php b/app/config/database.php index e6a32ce4..3498fa81 100644 --- a/app/config/database.php +++ b/app/config/database.php @@ -55,8 +55,8 @@ '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 @@ 'pgsql' => array( 'driver' => 'pgsql', 'host' => 'localhost', - 'database' => 'database', - 'username' => 'root', + 'database' => 'forge', + 'username' => 'forge', 'password' => '', 'charset' => 'utf8', 'prefix' => '', diff --git a/app/config/local/database.php b/app/config/local/database.php new file mode 100644 index 00000000..5c68b56b --- /dev/null +++ b/app/config/local/database.php @@ -0,0 +1,47 @@ + array( + + 'mysql' => array( + 'driver' => 'mysql', + 'host' => 'localhost', + 'database' => 'homestead', + 'username' => 'homestead', + 'password' => '', + 'charset' => 'utf8', + 'collation' => 'utf8_unicode_ci', + 'prefix' => '', + ), + + 'pgsql' => array( + 'driver' => 'pgsql', + 'host' => 'localhost', + 'database' => 'homestead', + 'username' => 'homestead', + 'password' => '', + 'charset' => 'utf8', + 'prefix' => '', + 'schema' => 'public', + ), + + ), + +);