2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-10-03 17:21:20 +08:00
discourse/db/migrate/20190426074404_add_missing_user_destroyer_indexes.rb
2023-01-09 11:59:41 +00:00

12 lines
449 B
Ruby

# frozen_string_literal: true
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, %i[user_id upload_id]
add_index :user_auth_token_logs, [:user_id]
add_index :topic_links, [:user_id]
end
end