Timestamps are not updating while attaching data in pivot table

Sriraman picture Sriraman · Sep 8, 2014 · Viewed 32.5k times · Source

I'm creating a row in pivot table using the following attach statement.

$music = Music::find(1);
$music->users()->attach(1);

This inserting a row in pivot table but, It is not updating the timestamp. The timestamp remains 0000-00-00 00:00:00

Is there any way to update the timestamps in pivot table. ?

Thanks in advance,

Answer

marcanuy picture marcanuy · Sep 8, 2014

If you want your pivot table to have automatically maintained created_at and updated_at timestamps, use the withTimestamps() method on the relationship definition.

return $this->belongsToMany('Role')->withTimestamps();