I have a Users and Skills related by a MANY_MANY relation. The quality of the skill (e.g. speaking a language very well or just a little) is defined by an attribute of the relationship.
Tables:
> User: id, name
> Skill: Id, title
> UserSkillRel: id, user_id, skill_id, quality
As far as I understand the AR-Classes it’s almost impossible to easily access relationship attributes.
That’s why Im asking for a simple method to read attributes of the relationship.