wp_ktmp_price_rules
StaticStores ktmp price rules data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑rule_id | INT | NO |
| rule_name | VARCHAR(100) | YES |
| marketplace_id | INT | NO |
| filter_type | VARCHAR(100) | YES |
| filter_value | JSON | YES |
| sorting_order | INT | YES |
| operation_type | ENUM('addition', 'subtraction', 'multiplication', 'division') | YES |
| value | DECIMAL(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) ) 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_price_rules`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Keskintech Marketplaces