aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/refinery/blog/categorization.rb
blob: 7ca9c7792f06eaad57c6c4ac7534eebdf16de642 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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

      attr_accessible :blog_category_id, :blog_post_id
    end
  end
end