aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/refinery/blog/categorization.rb
blob: b7dbcc894904dff096e3219d1df128b211b8a4da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Refinery
  module Blog
    class Categorization < ActiveRecord::Base

      self.table_name = 'refinery_blog_categories_blog_posts'
      belongs_to :blog_post, :class_name => 'Refinery::Blog::Post', :foreign_key => :blog_post_id
      belongs_to :blog_category, :class_name => 'Refinery::Blog::Category', :foreign_key => :blog_category_id

    end
  end
end