wp_gdpr_cookie_post_cookies

Static

Stores gdpr cookie post cookies data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_gdpr_cookie_post_cookies` (\n  `id_gdpr_cookie_post_cookies` int NOT NULL AUTO_INCREMENT,\n  `name` varchar(255) NOT NULL,\n  `domain` varchar(255) NOT NULL,\n  `duration` varchar(255) NOT NULL,\n  `type` varchar(255) NOT NULL,\n  `category` varchar(255) NOT NULL,\n  `category_id` int NOT NULL,\n  `description` text,\n  PRIMARY KEY (`id_gdpr_cookie_post_cookies`)\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_gdpr_cookie_post_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