Hi,
I have an Account and a User Model with a one to one relationship, I'm trying to use saveAll to save the data to the db:
$this->Account->set(array( 'uid' => uniqid(),'date_registration' => date('Y-m-d'),'state' => 1));
if ($this->Account->saveAll($this->data) ) {
However, saveAll seems to be saving only the data in $this-date and ignores the previous set statement, unlike save. Is that the case, any workarounds?
Thanks.