wp_analytics_event_attributes
StaticStores analytics event attributes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| event_uuid | char(36) | NO |
| name | varchar(255) | NO |
| value | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE `wp_analytics_event_attributes` ( `id` INT(11) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, `event_uuid` char(36) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, KEY `idx_uuid` (`event_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_event_attributes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AesirX Analytics