From 6f80a2deddd0a2f4dbc87b9b0caa070100dbf9b2 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 13 Nov 2013 05:49:22 -0500 Subject: [PATCH] Default DB creds --- app/config/database.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/config/database.php b/app/config/database.php index ed63e39a52..31db93b9de 100755 --- a/app/config/database.php +++ b/app/config/database.php @@ -54,9 +54,9 @@ return array( 'mysql' => array( 'driver' => 'mysql', - 'host' => '127.0.0.1', - 'database' => 'laravel4_testing', - 'username' => 'root', + 'host' => 'localhost', + 'database' => 'snipeit_laravel', + 'username' => 'snipeit_laravel', 'password' => '', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci',