Article->doIncrement($id); // Scenario 2: Increment 'votes' field in article table. // Since I haven't set it up in model article, // I can still increment the votes field // but I have to specify it as below. $this->Article->doIncrement($id, 1, 'votes'); } } ?>