wp_analytics_conversion
StaticStores analytics conversion data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(10) UNSIGNED | NO |
| uuid | char(36) | NO |
| flow_uuid | char(36) | NO |
| order_id | varchar(255) | YES |
| extension | varchar(255) | NO |
| revenue_total | INT(10) UNSIGNED | NO |
| revenue_subtotal | INT(10) UNSIGNED | NO |
| revenue_tax | INT(10) UNSIGNED | NO |
| revenue_discount | INT(10) UNSIGNED | NO |
| revenue_shipping | INT(10) UNSIGNED | NO |
| conversion_type | varchar(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