wp_analytics_wallet
StaticStores analytics wallet data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| uuid | char(36) | NO |
| network | varchar(255) | NO |
| address | varchar(255) | NO |
| nonce | int | YES |
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