aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/refinery/categorization.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/refinery/categorization.rb')
-rw-r--r--app/models/refinery/categorization.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/refinery/categorization.rb b/app/models/refinery/categorization.rb
index c4feaec..97f0928 100644
--- a/app/models/refinery/categorization.rb
+++ b/app/models/refinery/categorization.rb
@@ -2,8 +2,8 @@ module Refinery
class Categorization < ActiveRecord::Base
set_table_name 'refinery_blog_categories_blog_posts'
- belongs_to :blog_post
- belongs_to :blog_category
+ 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 \ No newline at end of file