I have written in my code like this...
$this->User->saveAll($this->data, array('validate'=>'first'));
$this->User->saveAll($this->data, array('validate'=>false));
'validate'=>false will not check for validations in model. But if I replace false with first, then what will it do?
Thanks.