wp_analytics_flows

Static

Stores analytics flows data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11) UNSIGNEDNO
uuidchar(36)NO
visitor_uuidchar(36)NO
startdatetimeNO
enddatetimeNO
multiple_eventsTINYINT(1)YES

CREATE TABLE Statement

CREATE TABLE `wp_analytics_flows` ( `id` INT(11) UNSIGNED AUTO_INCREMENT UNIQUE KEY NOT NULL, `uuid` char(36) NOT NULL, `visitor_uuid` char(36) NOT NULL, `start` datetime NOT NULL, `end` datetime NOT NULL, `multiple_events` TINYINT(1) DEFAULT 0, PRIMARY KEY (`uuid`), KEY `visitor_uuid` (`visitor_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_flows`;

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

Other tables from AesirX Analytics