wp_analytics_consent
StaticStores analytics consent data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| uuid | char(36) | NO |
| wallet_uuid | char(36) | YES |
| web3id | varchar(255) | YES |
| consent | int | NO |
| datetime | datetime | NO |
| expiration | datetime | YES |
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