wp_aieo_sp_run

Static

Stores aieo sp run data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idtinyint unsignedNO
asofdateYES
grainvarchar(16)YES
next_batchintYES
total_batchesintYES
total_productsintYES
statusvarchar(20)YES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_aieo_sp_run ( id tinyint unsigned NOT NULL PRIMARY KEY, asof date DEFAULT NULL, grain varchar(16) DEFAULT 'both', next_batch int DEFAULT 0, total_batches int DEFAULT 0, total_products int DEFAULT 0, status varchar(20) DEFAULT NULL, updated_at datetime DEFAULT NULL ) 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_sp_run`;

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

Other tables from AI eShop Optimizer