データの削除を削除キーでしてくれるプラグインacts_as_paranoidですが、 has_many :throughを同時に使ってちょっとはまったんでメモ。 groupsテーブルとmembersテーブルが中間テーブルAssociationsで has_many :throughを用いて、多対多の関係にあるとき、RailsのModelでは #Grouop model class Group < ActiveRecord::Base has_many :associations has_many :members, :through => :associations end #Member model class Member < ActiveRecord::Base has_many :associations has_many :groups, :through => :associa