wp_analytics_conversion_item

Static

Stores analytics conversion item data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(10) UNSIGNEDNO
conversion_uuidchar(36)NO
skuVARCHAR(255)NO
nameVARCHAR(255)NO
priceINT(10) UNSIGNEDNO
quantityINT(10) UNSIGNEDNO

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