wp_analytics_category_consent

Static

Stores analytics category consent data created by this plugin.

Column Definitions

ColumnTypeNullable
idchar(36)NO
uuidchar(36)NO
datetimedatetimeYES
expirationdatetimeYES
allowvarchar(255)YES
rejectvarchar(255)YES

CREATE TABLE Statement

CREATE TABLE `wp_analytics_category_consent` ( `id` char(36) NOT NULL, `uuid` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `datetime` datetime DEFAULT NULL, `expiration` datetime DEFAULT NULL, `allow` varchar(255) DEFAULT NULL, `reject` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `analytics_category_consent_1` (`uuid`), CONSTRAINT `analytics_category_consent_1` FOREIGN KEY (`uuid`) REFERENCES `wp_analytics_visitors` (`uuid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE

Safe to delete?

If you have uninstalled AesirX 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_analytics_category_consent`;

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

Other tables from AesirX Consent