wp_ebay_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
timestampdatetimeYES
request_urltextYES
requesttextYES
responsetextYES
callnamevarchar(64)YES
successvarchar(16)YES
ebay_idbigint(255)YES
user_idint(11)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_ebay_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `timestamp` datetime DEFAULT NULL, `request_url` text DEFAULT NULL, `request` text DEFAULT NULL, `response` text DEFAULT NULL, `callname` varchar(64) DEFAULT NULL, `success` varchar(16) DEFAULT NULL, `ebay_id` bigint(255) DEFAULT NULL, `user_id` int(11) 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_log`;

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

Other tables from WP-Lister Lite for eBay