有一点可以指出我正确的方向:
我试图建立一个轨道的模型,建立以下内容:
ClassA的
-ID
ClassA与许多“ClassA”有关系(所以它是对自己的引用)
我正在寻找迁移和模式.
我不知道正确的连接表是什么(我认为它的一个简单的2列表ClassA_id,ClassARel_ID – >都指向ClassA)以及如何构建模型
谢谢!
解决方法
我会用这样的东西
class Person < ActiveRecord::Base has_many :friendships,:foreign_key => "person_id",:class_name => "Friendship" has_many :friends,:through => :friendships end class Friendship < ActiveRecord::Base belongs_to :person,:class_name => "Person" belongs_to :friend,:foreign_key => "friend_id",:class_name => "Person" end
桌子会像
people: id; name; whatever-you-need friendships: id; person_id; friend_id