wp_iwp_db_sent
StaticStores iwp db sent data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | YES |
| table_name | TEXT | YES |
| table_name_hash | CHAR(64) | YES |
| offset | INT | YES |
| rows_total | INT | YES |
| completed | INT | YES |
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