色々奥が深いと思った(not http://0xcc.net/misc/bad-knowhow.html 笑) ■前提:記事←関連テーブル→ユーザというモデル関係がある。 1 # has_many :throughのパターン 2 class Article< ActiveRecord::Base 3 has_many :articles_users 4 has_many :users, :through => :articles_users 5 end 6 7 class User < ActiveRecord::Base 8 has_many :articles_users, :dependent => :destroy 9 has_many :articles, :through => :articles_users 10 end 11 12 # 関連テーブルを実テ