wp_aieo_sales_predictor_accuracy
StaticStores aieo sales predictor accuracy data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint unsigned | NO |
| grain | varchar(12) | NO |
| segment_type | varchar(20) | NO |
| segment_key | varchar(64) | NO |
| method | varchar(40) | NO |
| n_samples | int | YES |
| mape | decimal(10,4) | YES |
| bias | decimal(20,7) | YES |
| ewma_abs_err | decimal(20,7) | YES |
| updated_at | datetime | YES |
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