wp_aieo_reciprocal_ids

Static

Stores aieo reciprocal ids data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑Idint(11)NO
SKUvarchar(100)YES
Soft1Idsvarchar(120)YES
EshopIdbigint(20) unsignedYES
EshopParentIdbigint(20) unsignedYES
ExcludeFromUpdateint(11)YES
ContentCreateddatetimeYES
ContentLastUpdateddatetimeYES
update_on_next_runint(11)YES
Soft1Idbigint(20) unsignedYES

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