wp_ebay_messages
StaticStores ebay messages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| message_id | varchar(128) | YES |
| received_date | datetime | YES |
| subject | varchar(255) | YES |
| sender | varchar(255) | YES |
| flag_read | varchar(1) | YES |
| flag_replied | varchar(1) | YES |
| flag_flagged | varchar(1) | YES |
| item_title | varchar(255) | YES |
| item_id | bigint(255) | YES |
| folder_id | bigint(255) | YES |
| msg_text | text | YES |
| msg_content | text | YES |
| details | text | YES |
| expiration_date | datetime | YES |
| response_url | varchar(255) | YES |
| status | varchar(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