wp_ktmp_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idMEDIUMINT(9)NO
task_idMEDIUMINT(9)YES
error_messageTEXTNO
error_codeVARCHAR(100)YES
error_timeDATETIMENO

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