mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 12:26:04 +08:00
PERF: use 'delete_all' method instead of 'destroy_all'
This commit is contained in:
@ -396,7 +396,7 @@ UPLOAD_PATTERNS ||= [
|
|||||||
|
|
||||||
desc 'Finds missing post upload records from cooked HTML content'
|
desc 'Finds missing post upload records from cooked HTML content'
|
||||||
task 'posts:missing_uploads' => :environment do
|
task 'posts:missing_uploads' => :environment do
|
||||||
PostCustomField.where(name: Post::MISSING_UPLOADS).destroy_all
|
PostCustomField.where(name: Post::MISSING_UPLOADS).delete_all
|
||||||
count = 0
|
count = 0
|
||||||
|
|
||||||
Post.have_uploads.select(:id, :cooked).find_in_batches do |posts|
|
Post.have_uploads.select(:id, :cooked).find_in_batches do |posts|
|
||||||
|
Reference in New Issue
Block a user