wp_gdpr_cc_options
StaticStores gdpr cc options data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INTEGER | NO |
| option_key | VARCHAR(255) | NO |
| option_value | LONGTEXT | YES |
| site_id | INTEGER | YES |
| extras | LONGTEXT | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_gdpr_cc_options( id INTEGER NOT NULL auto_increment, option_key VARCHAR(255) NOT NULL DEFAULT 1, option_value LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, site_id INTEGER DEFAULT NULL, extras LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, PRIMARY KEY (id) );
Safe to delete?
If you have uninstalled GDPR Cookie Compliance – Cookie Banner, Cookie Consent, Cookie Notice for CCPA, EU Cookie Law, 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_cc_options`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.