wp_iframe_plugin

Verified

Stores iframe plugin data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_iframe_plugin` (\n  `iframe_id` int NOT NULL AUTO_INCREMENT,\n  `iframe_path` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL,\n  `iframe_link` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL,\n  `iframe_target` varchar(50) NOT NULL,\n  `iframe_title` varchar(500) NOT NULL,\n  `iframe_order` int NOT NULL,\n  `iframe_status` varchar(10) NOT NULL,\n  `iframe_type` varchar(100) NOT NULL,\n  `iframe_extra1` varchar(100) NOT NULL,\n  `iframe_extra2` varchar(100) NOT NULL,\n  `iframe_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`iframe_id`)\n) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3

Safe to delete?

If you have uninstalled iFrame Images Gallery, 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_iframe_plugin`;

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