wp_kupaywc_log

Static

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

Column Definitions

ColumnTypeNullable
🔑log_idBIGINT UNSIGNEDNO
timestampdatetimeNO
trans_codechar(20)NO
responselongtextNO
order_idBIGINT UNSIGNEDYES
payment_typechar(20)YES
log_typechar(20)YES

CREATE TABLE Statement

CREATE TABLE wp_kupaywc_log ( log_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, timestamp datetime NOT NULL, trans_code char(20) NOT NULL, response longtext NOT NULL, order_id BIGINT UNSIGNED NULL, payment_type char(20) NULL, log_type char(20) NULL, PRIMARY KEY (log_id), KEY trans_code (trans_code), KEY order_trans (order_id, trans_code), KEY order_id (order_id) ) $collate;"; dbDelta( $query );

Safe to delete?

If you have uninstalled Kuroneko Web Collect for Woo, 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_kupaywc_log`;

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