wp_hitlist

Static

Stores hitlist data created by this plugin.

Column Definitions

ColumnTypeNullable
term_idINTEGERYES
doc_idINTEGERYES
field_idINTEGERYES
positionINTEGERYES
hit_countINTEGERYES

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