wp_ktmp_cron_jobs
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑cron_id | INT | NO |
| statu | ENUM('active','paused','expired') | NO |
| cron_type | ENUM('update','order') | NO |
| interval_time | ENUM('ten_minutes','twenty_minutes','thirty_minutes','one_hour','four_hours','twelve_hours','twenty_four_hours') | NO |
| marketplace_id | INT | NO |
| file_name | VARCHAR(100) | NO |
| role | ENUM('amazon','ebay','alibaba','etsy','walmart','trendyol','n11','hepsiburada','pazarama','ciceksepeti','pttavm') | NO |
| cron_name | VARCHAR(100) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_ktmp_cron_jobs ( cron_id INT NOT NULL AUTO_INCREMENT, statu ENUM('active','paused','expired') NOT NULL, cron_type ENUM('update','order') NOT NULL, interval_time ENUM('ten_minutes','twenty_minutes','thirty_minutes','one_hour','four_hours','twelve_hours','twenty_four_hours') NOT NULL, marketplace_id INT NOT NULL, file_name VARCHAR(100) NOT NULL, role ENUM('amazon','ebay','alibaba','etsy','walmart','trendyol','n11','hepsiburada','pazarama','ciceksepeti','pttavm') NOT NULL, cron_name VARCHAR(100) NOT NULL, PRIMARY KEY (cron_id), INDEX idx_full (statu, marketplace_id) ) ENGINESafe to delete?
If you have uninstalled Keskintech Marketplaces, 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_ktmp_cron_jobs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Keskintech Marketplaces