wp_analytics_consent

Static

Stores analytics consent data created by this plugin.

Column Definitions

ColumnTypeNullable
uuidchar(36)NO
wallet_uuidchar(36)YES
web3idvarchar(255)YES
consentintNO
datetimedatetimeNO
expirationdatetimeYES

CREATE TABLE Statement

CREATE TABLE `wp_analytics_consent` ( `uuid` char(36) NOT NULL, `wallet_uuid` char(36) DEFAULT NULL, `web3id` varchar(255) DEFAULT NULL, `consent` int NOT NULL, `datetime` datetime NOT NULL, `expiration` datetime DEFAULT NULL, PRIMARY KEY (`uuid`), KEY `analytics_consent_1` (`wallet_uuid`), CONSTRAINT `analytics_consent_1` FOREIGN KEY (`wallet_uuid`) REFERENCES `wp_analytics_wallet` (`uuid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE

Safe to delete?

If you have uninstalled AesirX Analytics, 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_consent`;

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

Other tables from AesirX Analytics