wp_analytics_flows
StaticStores analytics flows data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| uuid | char(36) | NO |
| visitor_uuid | char(36) | NO |
| start | datetime | NO |
| end | datetime | NO |
| multiple_events | TINYINT(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