wp_analytics_conversion_item
StaticStores analytics conversion item data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(10) UNSIGNED | NO |
| conversion_uuid | char(36) | NO |
| sku | VARCHAR(255) | NO |
| name | VARCHAR(255) | NO |
| price | INT(10) UNSIGNED | NO |
| quantity | INT(10) UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE `wp_analytics_conversion_item` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `conversion_uuid` char(36) NOT NULL, `sku` VARCHAR(255) NOT NULL, `name` VARCHAR(255) NOT NULL, `price` INT(10) UNSIGNED NOT NULL, `quantity` INT(10) UNSIGNED NOT NULL, PRIMARY KEY (`id`) ) 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_item`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AesirX Analytics