aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/categorization.rb
blob: bddc1e5f0c1551a1687632c65cd54a3890e929c0 (plain) (tree)
1
2
3
4
5
6
7



                                         


                                                                    
class Categorization < ActiveRecord::Base
  belongs_to :post
  belongs_to :category
  belongs_to :author
  
  has_many :post_taggings, :through => :author, :source => :taggings
end