关于Rails中的表关联的程序

class CateToCate < ActiveRecord::Base
  belongs_to :sub_category,:class_name=>"Category", :foreign_key=>"sub_id"
  belongs_to :parent_category,:class_name=>"Category", :foreign_key =>"parent_id"
end


本来是想说明一个用法的,直接看源代码吧

SQLite3的可以直接跑

你可能感兴趣的:(Ruby,ActiveRecord,Rails)