我有以下幾點:如何創建一個對象,如果它有多個belongs_to?
class Org < ActiveRecord::Base
has_many :users
has_many :entries
end
class Entry < ActiveRecord::Base
belongs_to :org
belongs_to :user
validates_presence_of :entry_text
end
class User < ActiveRecord::Base
belongs_to :org
has_many :entries
validates_uniqueness_of :user_name
validates_presence_of :user_name, :length => { :minimum => 3 }
end
我可以創建單位和用戶...如何創建一個條目,如果有兩個belongs_to的?這個模式叫什麼?