所以我正在开发一个rails 4应用程序,我有两个模型,一个开发人员和一个应用程序。
基本上我希望开发人员充当创始人并拥有多个应用程序,这些应用程序属于开发人员(创始人)。然后我希望和app有很多合作者和合作者属于许多应用程序。继承我的代码,这是对的吗?我怎么能说一个合作者添加到应用程序?
应用
has_and_belongs_to_many :collaborators, class_name: 'Developer', foreign_key: :collaborator_id
has_and_belongs_to_many :founders, class_name: 'Developer', foreign_key: :founder_id
开发
has_and_belongs_to_many :apps, foreign_key: :collaborator_id
has_and_belongs_to_many :apps, foreign_key: :founder_id
关系表
def change
create_table :apps_developers, id: false do |t|
t.references :founder, references: 'Developer'
t.references :collaborator, references: 'Developer'
t.references :app
t.boolean :collaborator_pending, default: :true
end
add_index :apps_developers, [:founder_id, :app_id], unique: true
add_index :apps_developers, [:collaborator_id, :app_id, :collaborator_pending], unique: true, name: 'index_apps_collaborators'
end
答案 0 :(得分:1)
您应该为合作者使用HABTM,为创始人使用has_many
,而不是相反。
原因是协作者和应用之间的关系是多对多的,而创始人和应用之间的关系是一对多的。
/app/models/app.rb
Class App < ActiveRecord::Base
belongs_to :founder, :class_name => 'Developer'
has_and_belongs_to_many :collaborators, :class_name => 'Developer'
end
/app/models/developer.rb
Class Developer < ActiveRecord::Base
has_many :apps, :foreign_key => :founder_id
has_and_belongs_to_many :apps, :foreign_key => :collaborator_id
end
关于您的第二个问题,这是您可以将协作者添加到应用的方式:
app.collaborators << developer
其中app
是App
类的对象,而developer
是Developer
类的对象。