wp_ktmp_matching

Static

Stores ktmp matching data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑match_idINTNO
marketplace_idINTNO
meta_keyENUM('term','brand','category','att_taxonomy')NO
filterVARCHAR(100)YES
valid_categoriesTEXTYES
parent_mp_attributeVARCHAR(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) ) 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_matching`;

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

Other tables from Keskintech Marketplaces