wp_ktmp_transactions

Static

Stores ktmp transactions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTNO
cron_idINTYES
statuENUM('created','processing','failed','awaiting_response','completed_no_response','completed')NO
typeENUM('update','order','send')NO
file_nameVARCHAR(100)NO
transaction_dateDATETIMENO
roleENUM('amazon','ebay','alibaba','etsy','walmart','trendyol','n11','hepsiburada','pazarama','ciceksepeti','pttavm')NO
tracking_tokenVARCHAR(100)YES
retry_countTINYINT UNSIGNEDNO
max_retriesTINYINT UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_ktmp_transactions ( id INT NOT NULL AUTO_INCREMENT, cron_id INT DEFAULT NULL, statu ENUM('created','processing','failed','awaiting_response','completed_no_response','completed') NOT NULL, type ENUM('update','order','send') NOT NULL, file_name VARCHAR(100) NOT NULL, transaction_date DATETIME NOT NULL, role ENUM('amazon','ebay','alibaba','etsy','walmart','trendyol','n11','hepsiburada','pazarama','ciceksepeti','pttavm') NOT NULL, tracking_token VARCHAR(100) DEFAULT NULL, retry_count TINYINT UNSIGNED NOT NULL DEFAULT 0, max_retries TINYINT UNSIGNED NOT NULL DEFAULT 5, PRIMARY KEY (id), INDEX idx_statu_id (statu, 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_transactions`;

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

Other tables from Keskintech Marketplaces