Timestamps are optional in many-to-many pivot table

Signed-off-by: Kelly Banman <kelly.banman@gmail.com>
This commit is contained in:
Kelly Banman 2012-04-02 14:59:44 -07:00
parent ff484b7203
commit 587a80acbb
1 changed files with 6 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class Has_Many_And_Belongs_To extends Relationship {
*
* @var array
*/
protected $with = array('id', 'created_at', 'updated_at');
protected $with = array();
/**
* Create a new many to many relationship instance.
@ -43,6 +43,11 @@ public function __construct($model, $associated, $table, $foreign, $other)
$this->joining = $table ?: $this->joining($model, $associated);
if (Pivot::$timestamps)
{
$this->with = array('id', 'created_at', 'updated_at');
}
parent::__construct($model, $associated, $foreign);
}