wp_wpl_cookie_scan_cookies
StaticStores wpl cookie scan cookies data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_wpl_cookie_scan_cookies` (\n `id_wpl_cookie_scan_cookies` int NOT NULL AUTO_INCREMENT,\n `id_wpl_cookie_scan` int NOT NULL DEFAULT '0',\n `id_wpl_cookie_scan_url` int NOT NULL DEFAULT '0',\n `name` varchar(50) NOT NULL,\n `domain` varchar(255) NOT NULL DEFAULT '',\n `duration` varchar(255) DEFAULT NULL,\n `type` varchar(255) DEFAULT NULL,\n `category` varchar(50) NOT NULL,\n `category_id` int NOT NULL,\n `description` text,\n PRIMARY KEY (`id_wpl_cookie_scan_cookies`),\n UNIQUE KEY `cookie` (`id_wpl_cookie_scan`,`name`),\n KEY `category_id` (`category_id`),\n CONSTRAINT `wp_wpl_cookie_scan_cookies_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `wp_gdpr_cookie_scan_categories` (`id_gdpr_cookie_category`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Safe to delete?
If you have uninstalled Cookie Banner for GDPR / CCPA – WPLP Cookie Consent, 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_wpl_cookie_scan_cookies`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Cookie Banner for GDPR / CCPA – WPLP Cookie Consent