aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/refinery/categorization.rb
blob: c4feaece1e845627255070bc6a34ef65b38d0438 (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
    belongs_to :blog_category

  end
end