Summary
The abuse_filter_log table has a new afl_ip_hex column. We should read from it instead of reading from afl_ip.
Background & Technical details
- T391322: Special:AbuseLog: Support search by IP and IP range when temporary accounts are enabled requests that it be possible to search AbuseFilter log entries performed by temporary accounts by the IP address used to perform the action
- To achieve this we need to be able to search by the IP address column in the abuse_filter_log table
- This involves reading from this new afl_ip_hex column instead of afl_ip so that the old column can be removed, which will be the focus of this task.
Acceptance criteria
- The afl_ip_hex column is read from
- No code reads from afl_ip (except for any code related to the migration to afl_ip_hex)