wp_iwp_files_sent

Static

Stores iwp files sent data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTYES
filepathTEXTYES
filepath_hashCHAR(64)YES
sentINTYES
sizeINTYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS iwp_files_sent (id INT AUTO_INCREMENT PRIMARY KEY, filepath TEXT, filepath_hash CHAR(64) UNIQUE, sent INT DEFAULT 0, size INT) {$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_files_sent`;

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

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