wp_hitlist
StaticStores hitlist data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| term_id | INTEGER | YES |
| doc_id | INTEGER | YES |
| field_id | INTEGER | YES |
| position | INTEGER | YES |
| hit_count | INTEGER | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS hitlist ( term_id INTEGER, doc_id INTEGER, field_id INTEGER, position INTEGER, hit_count INTEGER)");
Safe to delete?
If you have uninstalled Admin Instant Search, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_hitlist`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Admin Instant Search