wp_ktmp_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | MEDIUMINT(9) | NO |
| task_id | MEDIUMINT(9) | YES |
| error_message | TEXT | NO |
| error_code | VARCHAR(100) | YES |
| error_time | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_ktmp_logs ( id MEDIUMINT(9) NOT NULL AUTO_INCREMENT, task_id MEDIUMINT(9) DEFAULT NULL, error_message TEXT NOT NULL, error_code VARCHAR(100) DEFAULT NULL, error_time DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, PRIMARY KEY (id) ) 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_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Keskintech Marketplaces