wp_kuatowc_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑log_id | BIGINT UNSIGNED | NO |
| timestamp | datetime | NO |
| trans_code | char(20) | NO |
| response | longtext | NO |
| order_no | BIGINT UNSIGNED | YES |
| payment_type | char(20) | YES |
| log_type | char(20) | YES |
| amount | int(20) | YES |
| invoice_status | char(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.