diff options
author | Joe Sak <joe@joesak.com> | 2011-07-18 14:56:46 -0500 |
---|---|---|
committer | Joe Sak <joe@joesak.com> | 2011-07-18 14:56:51 -0500 |
commit | b78486ce1ede4e5c384a2e0561173549925d21a1 (patch) | |
tree | eb7cf4702c12502ccfc644071c8cebd01075c405 /app/models/blog_category.rb | |
parent | 98b6052f1f3ac9a99efd18f17d8d33d2da990589 (diff) | |
download | refinerycms-blog-b78486ce1ede4e5c384a2e0561173549925d21a1.tar.gz refinerycms-blog-b78486ce1ede4e5c384a2e0561173549925d21a1.tar.bz2 refinerycms-blog-b78486ce1ede4e5c384a2e0561173549925d21a1.zip |
categorization has_many :through should have an ID, and the relationship should be destroyed if the blog post or category is
Diffstat (limited to 'app/models/blog_category.rb')
-rw-r--r-- | app/models/blog_category.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/blog_category.rb b/app/models/blog_category.rb index 263982c..b66a94d 100644 --- a/app/models/blog_category.rb +++ b/app/models/blog_category.rb @@ -1,6 +1,6 @@ class BlogCategory < ActiveRecord::Base - has_many :categorizations + has_many :categorizations, :dependent => :destroy has_many :posts, :through => :categorizations, :source => :blog_post acts_as_indexed :fields => [:title] |