wp_history

Static

Stores history data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
import_idBIGINT(20) UNSIGNEDNO
typeENUM('manual','processing','trigger','continue','')NO
time_runTEXTYES
dateDATETIMENO
summaryTEXTYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_history ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, import_id BIGINT(20) UNSIGNED NOT NULL, type ENUM('manual','processing','trigger','continue','') NOT NULL DEFAULT '', time_run TEXT, date DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', summary TEXT, PRIMARY KEY (id) ) $charset_collate;");

Safe to delete?

If you have uninstalled WP All Import – Drag & Drop Import for CSV, XML, Excel & Google Sheets, 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_history`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from WP All Import – Drag & Drop Import for CSV, XML, Excel & Google Sheets