0
我有4個模型,我不知道什麼是寫我的關係/協會的正確方法。如何在Rails中正確編寫我的關係/關聯?
class User < ActiveRecord::Base
has_many :boards
has_many :lists
has_many :cards
end
class Board < ActiveRecord::Base
belongs_to :user
has_many :lists
end
class List < ActiveRecord::Base
belongs_to :user
belongs_to :board
has_many :cards
end
class Card < ActiveRecord::Base
belongs_to :user
belongs_to :list
end
這看起來好像沒什麼問題。你能詳細瞭解你需要他們如何行事或目前沒有工作嗎? – PhilVarg