我试图在两张桌子之间建立关系,但我不知道正确的方法。
我有两张桌子
第一个:
User (table)
username (field)
email (field)
password (field)
第二张表:
Friend (table)
friend_one (field)
friend_two (field)
我想建立这样的关系:
User has_many "friend_one"
User has_many "friend_two"
-----
"friend_one" belongs_to User
"friend_two" belongs_to User
我有谷歌它,我没有找到适合我尝试做的任何例子。任何人都知道如何在Rails中创建这种关系?
谢谢你们,祝你们度过愉快的一天。