Don't seed a welcome topic on every db:migrate
This commit is contained in:
parent
e3a151d66a
commit
714a40313d
|
@ -2,7 +2,7 @@ User.reset_column_information
|
||||||
Topic.reset_column_information
|
Topic.reset_column_information
|
||||||
Post.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
|
# seed welcome topic
|
||||||
puts "Seeding welcome topic"
|
puts "Seeding welcome topic"
|
||||||
welcome = File.read(Rails.root + 'docs/ADMIN-QUICK-START-GUIDE.md')
|
welcome = File.read(Rails.root + 'docs/ADMIN-QUICK-START-GUIDE.md')
|
||||||
|
|
Loading…
Reference in New Issue