wp_aieo_reciprocal_ids
StaticStores aieo reciprocal ids data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑Id | int(11) | NO |
| SKU | varchar(100) | YES |
| Soft1Ids | varchar(120) | YES |
| EshopId | bigint(20) unsigned | YES |
| EshopParentId | bigint(20) unsigned | YES |
| ExcludeFromUpdate | int(11) | YES |
| ContentCreated | datetime | YES |
| ContentLastUpdated | datetime | YES |
| update_on_next_run | int(11) | YES |
| Soft1Id | bigint(20) unsigned | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_aieo_reciprocal_ids` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `SKU` varchar(100) DEFAULT NULL, `Soft1Ids` varchar(120) DEFAULT NULL, `EshopId` bigint(20) unsigned DEFAULT NULL, `EshopParentId` bigint(20) unsigned DEFAULT NULL, `ExcludeFromUpdate` int(11) DEFAULT NULL, `ContentCreated` datetime DEFAULT current_timestamp(), `ContentLastUpdated` datetime DEFAULT current_timestamp(), `update_on_next_run` int(11) DEFAULT 0, `Soft1Id` bigint(20) unsigned DEFAULT NULL, PRIMARY KEY (`Id`), KEY `idx_sku` (`SKU`), KEY `idx_eshopid` (`EshopId`), KEY `idx_eshopparentid` (`EshopParentId`), KEY `idx_soft1ids` (`Soft1Ids`) ) 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_reciprocal_ids`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AI eShop Optimizer