wp_analytics_conversion

Static

Stores analytics conversion data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10) UNSIGNEDNO
uuidchar(36)NO
flow_uuidchar(36)NO
order_idvarchar(255)YES
extensionvarchar(255)NO
revenue_totalINT(10) UNSIGNEDNO
revenue_subtotalINT(10) UNSIGNEDNO
revenue_taxINT(10) UNSIGNEDNO
revenue_discountINT(10) UNSIGNEDNO
revenue_shippingINT(10) UNSIGNEDNO
conversion_typevarchar(255)NO

CREATE TABLE Statement

CREATE TABLE `wp_analytics_conversion` ( `id` int(10) UNSIGNED AUTO_INCREMENT UNIQUE KEY NOT NULL, `uuid` char(36) NOT NULL, `flow_uuid` char(36) NOT NULL, `order_id` varchar(255) DEFAULT NULL, `extension` varchar(255) NOT NULL, `revenue_total` INT(10) UNSIGNED NOT NULL, `revenue_subtotal` INT(10) UNSIGNED NOT NULL, `revenue_tax` INT(10) UNSIGNED NOT NULL, `revenue_discount` INT(10) UNSIGNED NOT NULL, `revenue_shipping` INT(10) UNSIGNED NOT NULL, `conversion_type` varchar(255) NOT NULL, UNIQUE KEY `idx_unique` (`extension`, `conversion_type`, `uuid`, `order_id`), UNIQUE KEY `uuid` (`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_conversion`;

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

Other tables from AesirX Analytics