wp_gdpr_cookie_scan_categories

Static

Stores gdpr cookie scan categories data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_gdpr_cookie_scan_categories` (\n  `id_gdpr_cookie_category` int NOT NULL AUTO_INCREMENT,\n  `gdpr_cookie_category_name` varchar(50) NOT NULL,\n  `gdpr_cookie_category_slug` varchar(50) NOT NULL,\n  `gdpr_cookie_category_description` text,\n  PRIMARY KEY (`id_gdpr_cookie_category`),\n  UNIQUE KEY `cookie` (`gdpr_cookie_category_name`)\n) ENGINE=InnoDB AUTO_INCREMENT=6 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_gdpr_cookie_scan_categories`;

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

Other tables from Cookie Banner for GDPR / CCPA – WPLP Cookie Consent