Investigate if we can drop `index_users_on_accepted_term_id`
Preliminary Investigation
- This index doesn't seem to have had any scans, ever
- An 'accepted term' is an
ApplicationSetting::Term
which has abelongs_to
relationship withUser
. - This index might be useful to find a user associated with a given accepted term id, but checking the code I specified above as well as the User model, I don't find any instance in which this index would be useful.
I recommend dropping it.
Edited by Jon Jenkins