wp_vxcf_leads
LiveStores vxcf leads data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_vxcf_leads` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `form_id` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `status` int NOT NULL DEFAULT '0',\n `type` int NOT NULL DEFAULT '0',\n `is_read` tinyint(1) NOT NULL DEFAULT '0',\n `is_star` tinyint(1) NOT NULL DEFAULT '0',\n `user_id` bigint unsigned NOT NULL DEFAULT '0',\n `ip` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `browser` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `screen` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `os` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `vis_id` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `url` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `meta` text COLLATE utf8mb4_unicode_520_ci,\n `created` datetime DEFAULT NULL,\n `updated` datetime DEFAULT NULL,\n PRIMARY KEY (`id`),\n KEY `form_id` (`form_id`),\n KEY `status` (`status`),\n KEY `type` (`type`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Database for Contact Form 7, WPforms, Elementor forms, 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_vxcf_leads`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Database for Contact Form 7, WPforms, Elementor forms