wp_adfoin_integration

Static

Stores 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 KEY `id` (`id`)\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 KEY `id` (`id`)\n ) {$collate};");

Safe to delete?

If you have uninstalled AFI – The Easiest Integration Plugin, 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 AFI – The Easiest Integration Plugin