wp_ktmp_matching
StaticStores ktmp matching data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑match_id | INT | NO |
| marketplace_id | INT | NO |
| meta_key | ENUM('term','brand','category','att_taxonomy') | NO |
| filter | VARCHAR(100) | YES |
| valid_categories | TEXT | YES |
| parent_mp_attribute | VARCHAR(100) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_ktmp_matching ( match_id INT NOT NULL AUTO_INCREMENT, key_1 VARCHAR(100) NOT NULL, marketplace_id INT NOT NULL, meta_key ENUM('term','brand','category','att_taxonomy') NOT NULL, filter VARCHAR(100) DEFAULT NULL, key_2 VARCHAR(100) NOT NULL, key_2_value VARCHAR(100) DEFAULT NULL, valid_categories TEXT DEFAULT NULL, parent_mp_attribute VARCHAR(100) DEFAULT NULL, PRIMARY KEY (match_id), INDEX idx_marketplace_meta (marketplace_id, meta_key) ) 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_matching`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Keskintech Marketplaces