From 714a40313d3594982a3e1453cf0602745cb6767c Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Thu, 23 Jan 2014 16:42:03 -0500 Subject: [PATCH] Don't seed a welcome topic on every db:migrate --- db/fixtures/999_topics.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/fixtures/999_topics.rb b/db/fixtures/999_topics.rb index 46b4a178169..472b596cef3 100644 --- a/db/fixtures/999_topics.rb +++ b/db/fixtures/999_topics.rb @@ -2,7 +2,7 @@ User.reset_column_information Topic.reset_column_information Post.reset_column_information -if Topic.where('id NOT IN (SELECT topic_id from categories)').count == 0 && !Rails.env.test? +if Topic.where('id NOT IN (SELECT topic_id from categories where topic_id is not null)').count == 0 && !Rails.env.test? # seed welcome topic puts "Seeding welcome topic" welcome = File.read(Rails.root + 'docs/ADMIN-QUICK-START-GUIDE.md')