wp_analytics_events

Static

Stores analytics events data created by this plugin.

Column Definitions

ColumnTypeNullable
uuidchar(36)NO
flow_uuidchar(36)NO
visitor_uuidchar(36)NO
urlvarchar(255)NO
referervarchar(255)YES
startdatetimeNO
enddatetimeNO
event_namevarchar(255)NO
event_typevarchar(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