wp_ebay_auctions

Static

Stores ebay auctions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
ebay_idbigint(255)YES
auction_titlevarchar(255)YES
auction_typevarchar(255)YES
listing_durationvarchar(255)YES
date_createddatetimeYES
date_publisheddatetimeYES
date_finisheddatetimeYES
end_datedatetimeYES
pricefloatYES
quantityint(11)YES
quantity_soldint(11)YES
statusvarchar(50)YES
detailstextYES
ViewItemURLvarchar(255)YES
GalleryURLvarchar(255)YES
post_contenttextYES
post_idint(11)YES
profile_idint(11)YES
profile_datatextYES
templatevarchar(255)YES
feesfloatYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_ebay_auctions` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `ebay_id` bigint(255) DEFAULT NULL, `auction_title` varchar(255) DEFAULT NULL, `auction_type` varchar(255) DEFAULT NULL, `listing_duration` varchar(255) DEFAULT NULL, `date_created` datetime DEFAULT NULL, `date_published` datetime DEFAULT NULL, `date_finished` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `price` float DEFAULT NULL, `quantity` int(11) DEFAULT NULL, `quantity_sold` int(11) DEFAULT NULL, `status` varchar(50) DEFAULT NULL, `details` text, `ViewItemURL` varchar(255) DEFAULT NULL, `GalleryURL` varchar(255) DEFAULT NULL, `post_content` text, `post_id` int(11) DEFAULT NULL, `profile_id` int(11) DEFAULT NULL, `profile_data` text, `template` varchar(255) DEFAULT '', `fees` float 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_auctions`;

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

Other tables from WP-Lister Lite for eBay