wp_ebay_stocks_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| timestamp | datetime | YES |
| product_id | int(11) | YES |
| sku | varchar(32) | YES |
| old_stock | int(11) | YES |
| new_stock | int(11) | YES |
| caller | varchar(64) | YES |
| method | varchar(128) | YES |
| user_id | int(11) | YES |
| backtrace | text | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_ebay_stocks_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `timestamp` datetime DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `sku` varchar(32) DEFAULT NULL, `old_stock` int(11) DEFAULT NULL, `new_stock` int(11) DEFAULT NULL, `caller` varchar(64) DEFAULT NULL, `method` varchar(128) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `backtrace` text, PRIMARY KEY (`id`) ) DEFAULT CHARSET
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_stocks_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-Lister Lite for eBay