0

友達/フォロワーのメカニズムが欲しいので、次のDB構造を作成しました。

user_id
friend_id   

フォローしているユーザーが相互の友達であると判断する(Rails-way)最も簡単で簡単な方法を知りたいですか?

user_id        friend_id
1              2
2              1
4

1 に答える 1

0

これを試して:

test_pair = [1,2]
Friendship.where(user_id: test_pair, friend_id: test_pair).count == 2
于 2012-05-05T11:04:24.367 に答える