rails--rails/activerecord/test/models/categorization.rb

8 lines
179 B
Ruby
Raw Normal View History

class Categorization < ActiveRecord::Base
belongs_to :post
belongs_to :category
belongs_to :author
2010-10-31 11:21:28 +00:00
has_many :post_taggings, :through => :author, :source => :taggings
end