wp_ebay_orders

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
order_idvarchar(128)YES
date_createddatetimeYES
totalfloatYES
statusvarchar(50)YES
post_idint(11)YES
itemstextYES
detailstextYES
historytextYES
buyer_useridvarchar(255)YES
buyer_namevarchar(255)YES
buyer_emailvarchar(255)YES
eBayPaymentStatusvarchar(50)YES
CheckoutStatusvarchar(50)YES
ShippingServicevarchar(75)YES
PaymentMethodvarchar(50)YES
ShippingAddress_Cityvarchar(50)YES
CompleteStatusvarchar(50)YES
LastTimeModifieddatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_ebay_orders` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `order_id` varchar(128) DEFAULT NULL, `date_created` datetime DEFAULT NULL, `total` float DEFAULT NULL, `status` varchar(50) DEFAULT NULL, `post_id` int(11) DEFAULT NULL, `items` text, `details` text, `history` text, `buyer_userid` varchar(255) DEFAULT NULL, `buyer_name` varchar(255) DEFAULT NULL, `buyer_email` varchar(255) DEFAULT NULL, `eBayPaymentStatus` varchar(50) DEFAULT NULL, `CheckoutStatus` varchar(50) DEFAULT NULL, `ShippingService` varchar(75) DEFAULT NULL, `PaymentMethod` varchar(50) DEFAULT NULL, `ShippingAddress_City` varchar(50) DEFAULT NULL, `CompleteStatus` varchar(50) DEFAULT NULL, `LastTimeModified` datetime DEFAULT NULL, PRIMARY KEY (`id`) );

Safe to delete?

If you have uninstalled WP-Lister Lite for eBay, 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_ebay_orders`;

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

Other tables from WP-Lister Lite for eBay