From b78486ce1ede4e5c384a2e0561173549925d21a1 Mon Sep 17 00:00:00 2001 From: Joe Sak Date: Mon, 18 Jul 2011 14:56:46 -0500 Subject: categorization has_many :through should have an ID, and the relationship should be destroyed if the blog post or category is --- db/migrate/1_create_blog_structure.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'db') diff --git a/db/migrate/1_create_blog_structure.rb b/db/migrate/1_create_blog_structure.rb index 197efb1..a93d2d4 100644 --- a/db/migrate/1_create_blog_structure.rb +++ b/db/migrate/1_create_blog_structure.rb @@ -30,7 +30,7 @@ class CreateBlogStructure < ActiveRecord::Migration add_index :blog_categories, :id - create_table :blog_categories_blog_posts, :id => false do |t| + create_table :blog_categories_blog_posts, :id => true do |t| t.integer :blog_category_id t.integer :blog_post_id end -- cgit v1.2.3