wp_iwp_db_sent

Static

Stores iwp db sent data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTYES
table_nameTEXTYES
table_name_hashCHAR(64)YES
offsetINTYES
rows_totalINTYES
completedINTYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS iwp_db_sent (id INT AUTO_INCREMENT PRIMARY KEY, table_name TEXT, table_name_hash CHAR(64) UNIQUE, `offset` INT DEFAULT 0, rows_total INT DEFAULT 0, completed INT DEFAULT 0) {$collate};" );

Safe to delete?

If you have uninstalled InstaWP Connect – 1-click WP Staging & Migration, 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_iwp_db_sent`;

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

Other tables from InstaWP Connect – 1-click WP Staging & Migration