I have User model and Speciality model. Speciality HABTM User.
Given speciality_id and array of user_id I would like to add many users to the given speciality. So far I tried:
foreach($users as $user_id) {
$data[] = array(
'Speciality' => array('id' => $this->Speciality->id),
'User' => array('id' => $user_id),
);
}
if(!empty($data)) {
$this->Speciality->saveAll($data);
}
But it saves only ONE row in specialities_users table, not all of the associations... My goal can be achived jus with big insert into specialities_users table with (speciality_id,user_id) pairs but I want to achieve this in Cake.