class List < ActiveRecord::Base
has_many :tasks , :dependent => :destroy
end
这样是不是意味着我删除一个 list,也会把 task 的内容删除?我也见过:destroy_all 这样的。挺茫然的。
class User < ActiveRecord::Base
has_many :roles, :through => :user_roles
end
这个 through 我不知道有什么用