wp_analytics_events
StaticStores analytics events data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| uuid | char(36) | NO |
| flow_uuid | char(36) | NO |
| visitor_uuid | char(36) | NO |
| url | varchar(255) | NO |
| referer | varchar(255) | YES |
| start | datetime | NO |
| end | datetime | NO |
| event_name | varchar(255) | NO |
| event_type | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE `wp_analytics_events` ( `uuid` char(36) NOT NULL, `flow_uuid` char(36) NOT NULL, `visitor_uuid` char(36) NOT NULL, `url` varchar(255) NOT NULL, `referer` varchar(255) DEFAULT NULL, `start` datetime NOT NULL, `end` datetime NOT NULL, `event_name` varchar(255) NOT NULL, `event_type` varchar(255) NOT NULL, PRIMARY KEY (`uuid`), KEY `visitor_uuid` (`visitor_uuid`), KEY `flow_uuid` (`flow_uuid`), INDEX `idx_start_end` (`start`, `end`) ) 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_events`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AesirX Analytics