Avoid duplicate or overlapping indexes
Do not keep several indexes that serve the same leading prefix needlessly.
Potential overlap:
INDEX (user_id)
INDEX (user_id, created_at)
The second index may already cover many uses of the first.Review actual query patterns before keeping both. Some overlap is justified, but not all of it.