wp_history
StaticStores history data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| import_id | BIGINT(20) UNSIGNED | NO |
| type | ENUM('manual','processing','trigger','continue','') | NO |
| time_run | TEXT | YES |
| date | DATETIME | NO |
| summary | TEXT | YES |
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