wp_adfoin_integration
StaticStores adfoin integration data created by this plugin.
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_adfoin_integration` (\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n `title` text NOT NULL,\n `form_provider` varchar(255) NOT NULL,\n `form_id` varchar(255) NOT NULL,\n `form_name` varchar(255) DEFAULT NULL,\n `action_provider` varchar(255) NOT NULL,\n `task` varchar(255) NOT NULL,\n `data` longtext DEFAULT NULL,\n `extra_data` longtext DEFAULT NULL,\n `status` int(1) NOT NULL,\n `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n PRIMARY KEY (`id`),\n KEY `form_provider_form_id_status` (`form_provider`(50),`form_id`(50),`status`),\n KEY `status` (`status`),\n KEY `action_provider` (`action_provider`(50))\n ) {$collate};", "CREATE TABLE IF NOT EXISTS `wp_adfoin_log` (\n `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n `response_code` int(3) DEFAULT NULL,\n `response_message` varchar(255) DEFAULT NULL,\n `integration_id` bigint(20) DEFAULT NULL,\n `request_data` longtext DEFAULT NULL,\n `response_data` longtext DEFAULT NULL,\n `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n PRIMARY KEY (`id`),\n KEY `integration_id_id` (`integration_id`,`id`),\n KEY `time` (`time`),\n KEY `response_code` (`response_code`)\n ) {$collate};");Safe to delete?
If you have uninstalled Advanced Form Integration — Connect Forms to 200+ Apps, 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_adfoin_integration`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Advanced Form Integration — Connect Forms to 200+ Apps