wp_ebay_jobs
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| job_key | varchar(64) | YES |
| job_name | varchar(64) | YES |
| tasklist | text | YES |
| results | text | YES |
| success | varchar(16) | YES |
| date_created | datetime | YES |
| date_finished | datetime | YES |
| user_id | int(11) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_ebay_jobs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `job_key` varchar(64) DEFAULT NULL, `job_name` varchar(64) DEFAULT NULL, `tasklist` text DEFAULT NULL, `results` text DEFAULT NULL, `success` varchar(16) DEFAULT NULL, `date_created` datetime DEFAULT NULL, `date_finished` datetime 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_jobs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-Lister Lite for eBay