我正在尝试向我的模型添加多个 has_many 关系:
class Program < ActiveRecord::Base
has_many :courses, :program_offers
belongs_to :university
attr_accessible :end_date, :name, :period, :start_date, :symbol, :year, :university_id, :description, :titles, :profile, :price
end
但我得到:
hash expected
错误。
我怎样才能引用两个有很多表?