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

8 lines
179 B
Ruby

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