mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 19:46:55 +08:00
FIX: rake categories:move_topics shouldn't move category description topic (#14797)
This commit is contained in:
parent
1fffe941bf
commit
3254d35078
|
@ -14,7 +14,12 @@ task "categories:move_topics", [:from_category, :to_category] => [:environment]
|
|||
|
||||
if from_category.present? && to_category.present?
|
||||
puts "Moving topics from #{from_category.slug} to #{to_category.slug}..."
|
||||
Topic.where(category_id: from_category.id).update_all(category_id: to_category.id)
|
||||
|
||||
Topic
|
||||
.where(category_id: from_category.id)
|
||||
.where.not(id: from_category.topic_id)
|
||||
.update_all(category_id: to_category.id)
|
||||
|
||||
from_category.update_attribute(:topic_count, 0)
|
||||
|
||||
puts "Updating category stats..."
|
||||
|
|
Loading…
Reference in New Issue
Block a user