wp_aieo_order_attribution

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
order_idbigint(20) unsignedNO
channelvarchar(255)YES
utm_sourcevarchar(255)YES
utm_mediumvarchar(255)YES
utm_campaignvarchar(255)YES
utm_termvarchar(255)YES
utm_contentvarchar(255)YES
originvarchar(12)YES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_aieo_order_attribution` ( `order_id` bigint(20) unsigned NOT NULL, `channel` varchar(255) DEFAULT NULL, `utm_source` varchar(255) DEFAULT NULL, `utm_medium` varchar(255) DEFAULT NULL, `utm_campaign` varchar(255) DEFAULT NULL, `utm_term` varchar(255) DEFAULT NULL, `utm_content` varchar(255) DEFAULT NULL, `origin` varchar(12) DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`order_id`), KEY `idx_channel` (`channel`), KEY `idx_origin` (`origin`) ) 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_order_attribution`;

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

Other tables from AI eShop Optimizer