rails 3 habtm delete only association

后端 未结 3 644
伪装坚强ぢ
伪装坚强ぢ 2020-12-31 02:08
class Company
  has_and_belongs_to_many :users
end

class User
  has_and_belongs_to_many :companies
end

when i delete a company, what\'s the best (

3条回答
  •  傲寒
    傲寒 (楼主)
    2020-12-31 02:26

    If you call destroy instead of delete, associations will be deleted automatically.

提交回复
热议问题