mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
BUGFIX: not seeding welcome topic
This commit is contained in:
parent
bfc9664231
commit
f59c223210
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ User.reset_column_information
|
|||
Topic.reset_column_information
|
||||
Post.reset_column_information
|
||||
|
||||
if Topic.count == 0 && !Rails.env.test?
|
||||
if Topic.where('id NOT IN (SELECT topic_id from categories)').count == 0 && !Rails.env.test?
|
||||
# seed welcome topic
|
||||
puts "Seeding welcome topic"
|
||||
welcome = File.read(Rails.root + 'docs/ADMIN-QUICK-START-GUIDE.md')
|
||||
|
|
Loading…
Reference in a new issue