wp_aieo_sales_predictor_accuracy

Static

Stores aieo sales predictor accuracy data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint unsignedNO
grainvarchar(12)NO
segment_typevarchar(20)NO
segment_keyvarchar(64)NO
methodvarchar(40)NO
n_samplesintYES
mapedecimal(10,4)YES
biasdecimal(20,7)YES
ewma_abs_errdecimal(20,7)YES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_aieo_sales_predictor_accuracy` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `grain` varchar(12) NOT NULL DEFAULT 'variation', `segment_type` varchar(20) NOT NULL DEFAULT 'global', `segment_key` varchar(64) NOT NULL DEFAULT '', `method` varchar(40) NOT NULL, `n_samples` int DEFAULT 0, `mape` decimal(10,4) DEFAULT NULL, `bias` decimal(20,7) DEFAULT NULL, `ewma_abs_err` decimal(20,7) DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uq_grain_segment_method` (`grain`,`segment_type`,`segment_key`,`method`) ) ENGINE

Safe to delete?

If you have uninstalled AI eShop Optimizer, 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_aieo_sales_predictor_accuracy`;

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

Other tables from AI eShop Optimizer