wp_iwp_options
StaticStores iwp options data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | YES |
| option_name | CHAR(64) | YES |
| option_value | CHAR(64) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS iwp_options (id INT AUTO_INCREMENT PRIMARY KEY, option_name CHAR(64), option_value CHAR(64)) {$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_options`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from InstaWP Connect – 1-click WP Staging & Migration