wp_analytics_wallet

Static

Stores analytics wallet data created by this plugin.

Column Definitions

ColumnTypeNullable
uuidchar(36)NO
networkvarchar(255)NO
addressvarchar(255)NO
nonceintYES

CREATE TABLE Statement

CREATE TABLE `wp_analytics_wallet` ( `uuid` char(36) NOT NULL, `network` varchar(255) NOT NULL, `address` varchar(255) NOT NULL, `nonce` int DEFAULT NULL, PRIMARY KEY (`uuid`) ) 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_wallet`;

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

Other tables from AesirX Analytics