wp_ktmp_transactions
StaticStores ktmp transactions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| cron_id | INT | YES |
| statu | ENUM('created','processing','failed','awaiting_response','completed_no_response','completed') | NO |
| type | ENUM('update','order','send') | NO |
| file_name | VARCHAR(100) | NO |
| transaction_date | DATETIME | NO |
| role | ENUM('amazon','ebay','alibaba','etsy','walmart','trendyol','n11','hepsiburada','pazarama','ciceksepeti','pttavm') | NO |
| tracking_token | VARCHAR(100) | YES |
| retry_count | TINYINT UNSIGNED | NO |
| max_retries | TINYINT UNSIGNED | NO |
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) ) 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_transactions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Keskintech Marketplaces