wp_ebay_messages

Static

Stores ebay messages data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
message_idvarchar(128)YES
received_datedatetimeYES
subjectvarchar(255)YES
sendervarchar(255)YES
flag_readvarchar(1)YES
flag_repliedvarchar(1)YES
flag_flaggedvarchar(1)YES
item_titlevarchar(255)YES
item_idbigint(255)YES
folder_idbigint(255)YES
msg_texttextYES
msg_contenttextYES
detailstextYES
expiration_datedatetimeYES
response_urlvarchar(255)YES
statusvarchar(50)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_ebay_messages` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `message_id` varchar(128) DEFAULT NULL, `received_date` datetime DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `sender` varchar(255) DEFAULT NULL, `flag_read` varchar(1) DEFAULT NULL, `flag_replied` varchar(1) DEFAULT NULL, `flag_flagged` varchar(1) DEFAULT NULL, `item_title` varchar(255) DEFAULT NULL, `item_id` bigint(255) DEFAULT NULL, `folder_id` bigint(255) DEFAULT NULL, `msg_text` text, `msg_content` text, `details` text, `expiration_date` datetime DEFAULT NULL, `response_url` varchar(255) DEFAULT NULL, `status` varchar(50) 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_messages`;

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

Other tables from WP-Lister Lite for eBay