wp_ktmp_cron_jobs

Static

A job queue table for managing background tasks and scheduled operations.

Column Definitions

ColumnTypeNullable
🔑cron_idINTNO
statuENUM('active','paused','expired')NO
cron_typeENUM('update','order')NO
interval_timeENUM('ten_minutes','twenty_minutes','thirty_minutes','one_hour','four_hours','twelve_hours','twenty_four_hours')NO
marketplace_idINTNO
file_nameVARCHAR(100)NO
roleENUM('amazon','ebay','alibaba','etsy','walmart','trendyol','n11','hepsiburada','pazarama','ciceksepeti','pttavm')NO
cron_nameVARCHAR(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) ) ENGINE

Safe 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