我有两个模型之间has_many
的belongs_to
关联如下:
class Section < ActiveRecord::Base
self.primary_key = 'id'
has_many :rights
end
class Right < ActiveRecord::Base
self.primary_key = 'id'
belongs_to :section
end
SECTION 表也有 ID 和 SECTION_ID 列。上面的代码通过节表中的 ID 列将 Right 与节相关联。我希望它通过 SECTION_ID 列关联。我怎么做?