From 176f0862aaa4bb2206fa39ae17f271d4140662de Mon Sep 17 00:00:00 2001 From: Drazen Date: Wed, 28 Mar 2012 11:09:47 +0200 Subject: [PATCH 1/2] Updated upgrade guide, Blade is also needed in the aliases Signed-off-by: Drazen --- changes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changes.md b/changes.md index 9e5f3e02..df25ac79 100644 --- a/changes.md +++ b/changes.md @@ -62,6 +62,7 @@ ### Add alias for Eloquent in your application configuration. Add the following to the **aliases** array in your **application/config/application.php** file: 'Eloquent' => 'Laravel\\Database\\Eloquent\\Model', + 'Blade' => 'Laravel\\Blade', ### Update Eloquent many-to-many tables. From b2324a757541d11755d74278a52e0d5f53dc58f9 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 29 Mar 2012 14:21:19 -0500 Subject: [PATCH 2/2] upgrade change log for redis database option. --- changes.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/changes.md b/changes.md index 4f638ad5..d8ca833c 100644 --- a/changes.md +++ b/changes.md @@ -89,4 +89,16 @@ ### Update your **config/strings.php** file. ### Add the **fetch** option to your database configuration file. -A new **fetch** option allows you to specify in which format you receive your database results. Just copy and paste the option from the new **application/config/database.php** file. \ No newline at end of file +A new **fetch** option allows you to specify in which format you receive your database results. Just copy and paste the option from the new **application/config/database.php** file. + +### Add **database** option to your Redis configuration. + +If you are using Redis, add the "database" option to your Redis connection configurations. The "database" value can be zero by default. + + 'redis' => array( + 'default' => array( + 'host' => '127.0.0.1', + 'port' => 6379, + 'database' => 0 + ), + ), \ No newline at end of file