I have a user model where users rate other users. They do that through a many-to-many association with a table called ratings that has rater_id and ratee_id fields that correspond to user_id (a many-to-many self join on User). The models are:I have a user model where users rate other user