mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
PERF: speed up user deletion logic
Previously any user deletion would scan a very large number of tables This avoids scans on 6 tables/indexes on delete
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class AddMissingUserDestroyerIndexes < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
# these indexes are required to make deletions of users fast
|
||||
add_index :user_actions, [:target_user_id], where: 'target_user_id IS NOT NULL'
|
||||
add_index :post_actions, [:user_id]
|
||||
add_index :user_uploads, [:user_id, :upload_id]
|
||||
add_index :user_auth_token_logs, [:user_id]
|
||||
add_index :topic_link, [:user_id]
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user