Hi
When I try to update a row (I'll use Robots as in dosc as example), this is not working:
$robot = Robots::find(2);
//do some stuff
$robot->update(array('views' => 'views + 1'));
How do I perform such updates where value is no a strict value but an expression?