wp_aieo_sp_queue
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑product_id | bigint | NO |
| batch_no | int | NO |
CREATE TABLE Statement
CREATE TABLE wp_aieo_sp_queue ( product_id bigint NOT NULL PRIMARY KEY, batch_no int NOT NULL, KEY k_batch (batch_no) ) 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_queue`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AI eShop Optimizer