Commit 369ecd80 authored by Taylor Otwell's avatar Taylor Otwell

Merge branch 'staging' into develop

parents 3e0d4684 b66d326e
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans * Laravel - A PHP Framework For Web Artisans
* *
* @package Laravel * @package Laravel
* @version 3.1.2 * @version 3.1.3
* @author Taylor Otwell <taylorotwell@gmail.com> * @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com * @link http://laravel.com
*/ */
......
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
- [Laravel 3.2](#3.2) - [Laravel 3.2](#3.2)
- [Upgrading From 3.1](#upgrade-3.2) - [Upgrading From 3.1](#upgrade-3.2)
- [Laravel 3.1.3](#3.1.3)
- [Upgrading From 3.1.2](#uprade-3.1.3)
- [Laravel 3.1.2](#3.1.2) - [Laravel 3.1.2](#3.1.2)
- [Upgrading From 3.1.1](#upgrade-3.1.2) - [Upgrading From 3.1.1](#upgrade-3.1.2)
- [Laravel 3.1.1](#3.1.1) - [Laravel 3.1.1](#3.1.1)
...@@ -11,6 +13,7 @@ ...@@ -11,6 +13,7 @@
- [Laravel 3.1](#3.1) - [Laravel 3.1](#3.1)
- [Upgrading From 3.0](#upgrade-3.1) - [Upgrading From 3.0](#upgrade-3.1)
<<<<<<< HEAD
<a name="3.2"></a> <a name="3.2"></a>
## Laravel 3.2 ## Laravel 3.2
...@@ -26,6 +29,16 @@ ...@@ -26,6 +29,16 @@
- Replace the **laravel** folder. - Replace the **laravel** folder.
- Add new **vendors** folder. - Add new **vendors** folder.
<a name="3.1.3"></a>
## Laravel 3.1.3
- Fixes **delete** method in Eloquent models.
<a name="upgrade-3.1.3"></a>
## Upgrade From 3.1.2
- Replace the **laravel** folder.
<a name="3.1.2"></a> <a name="3.1.2"></a>
## Laravel 3.1.2 ## Laravel 3.1.2
......
...@@ -385,6 +385,19 @@ abstract class Model { ...@@ -385,6 +385,19 @@ abstract class Model {
return $result; return $result;
} }
/**
* Delete the model from the database.
*
* @return int
*/
public function delete()
{
if ($this->exists)
{
return $this->query()->where(static::$key, '=', $this->get_key())->delete();
}
}
/** /**
* Set the update and creation timestamps on the model. * Set the update and creation timestamps on the model.
* *
......
...@@ -170,9 +170,7 @@ class Has_Many_And_Belongs_To extends Relationship { ...@@ -170,9 +170,7 @@ class Has_Many_And_Belongs_To extends Relationship {
*/ */
public function delete() public function delete()
{ {
$id = $this->base->get_key(); return $this->pivot()->delete();
return $this->joining_table()->where($this->foreign_key(), '=', $id)->delete();
} }
/** /**
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans * Laravel - A PHP Framework For Web Artisans
* *
* @package Laravel * @package Laravel
* @version 3.1.2 * @version 3.1.3
* @author Taylor Otwell <taylorotwell@gmail.com> * @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com * @link http://laravel.com
*/ */
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans * Laravel - A PHP Framework For Web Artisans
* *
* @package Laravel * @package Laravel
* @version 3.1.2 * @version 3.1.3
* @author Taylor Otwell <taylorotwell@gmail.com> * @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com * @link http://laravel.com
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment