How to Add/Delete new MANY_MANY
relation in Yii?
For Example i have a many-to many relation with users and projects. And the relations are set in the table 'project_user_assignment'
. I needed to add/Edit/Remove the relations from the table 'project_user_assignment'
.
User Model
public function relations()
{
return array('projects' => array(self::MANY_MANY, 'Project', 'project_user_assignment(user_id, project_id)'),
);
}
Project Model
public function relations()
{
return array(
'users' => array(self::MANY_MANY, 'User', 'project_user_assignment(project_id, user_id)'),
);
}