wp_ktmp_price_rules

Static

Stores ktmp price rules data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑rule_idINTNO
rule_nameVARCHAR(100)YES
marketplace_idINTNO
filter_typeVARCHAR(100)YES
filter_valueJSONYES
sorting_orderINTYES
operation_typeENUM('addition', 'subtraction', 'multiplication', 'division')YES
valueDECIMAL(10, 2)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_ktmp_price_rules ( rule_id INT NOT NULL AUTO_INCREMENT, rule_name VARCHAR(100), marketplace_id INT NOT NULL, filter_type VARCHAR(100), filter_value JSON, sorting_order INT, operation_type ENUM('addition', 'subtraction', 'multiplication', 'division'), value DECIMAL(10, 2) NOT NULL, PRIMARY KEY (rule_id), INDEX idx_marketplace_order (marketplace_id, sorting_order) ) 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_price_rules`;

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

Other tables from Keskintech Marketplaces