wp_kuatowc_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_noBIGINT UNSIGNEDYES
payment_typechar(20)YES
log_typechar(20)YES
amountint(20)YES
invoice_statuschar(15)YES

CREATE TABLE Statement

CREATE TABLE wp_kuatowc_log ( log_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, timestamp datetime NOT NULL, trans_code char(20) NOT NULL, response longtext NOT NULL, order_no BIGINT UNSIGNED NULL, payment_type char(20) NULL, log_type char(20) NULL, amount int(20) NULL, invoice_status char(15) NULL, PRIMARY KEY (log_id), KEY trans_code (trans_code), KEY order_trans (order_no, trans_code), KEY order_no (order_no) ) $collate;"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Kuroneko Daikin Atobarai Service 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_kuatowc_log`;

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