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

    set_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