XF 2.2 xf_job table with thousands of rows containing XF:SearchUserChange

AndyB

Well-known member
The xf_job table shows:

1614390191284.png

I assume it would be safe to use this SQL to delete rows where the unique_key is null.

Code:
DELETE FROM xf_job
WHERE unique_key IS NULL
 
Top Bottom