wp_kuvarpay_webhook_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| received_at | datetime | YES |
| event | varchar(100) | YES |
| status | varchar(50) | YES |
| session_id | varchar(255) | YES |
| transaction_id | varchar(255) | YES |
| order_id | bigint(20) | YES |
| signature_header | varchar(512) | YES |
| signature_valid | tinyint(1) | YES |
| ip_address | varchar(45) | YES |
| http_code | int(11) | YES |
| headers | longtext | YES |
| payload | longtext | YES |
| message | text | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_kuvarpay_webhook_logs ( id bigint(20) NOT NULL AUTO_INCREMENT, received_at datetime DEFAULT CURRENT_TIMESTAMP, event varchar(100) DEFAULT NULL, status varchar(50) DEFAULT NULL, session_id varchar(255) DEFAULT NULL, transaction_id varchar(255) DEFAULT NULL, order_id bigint(20) DEFAULT NULL, signature_header varchar(512) DEFAULT NULL, signature_valid tinyint(1) DEFAULT NULL, ip_address varchar(45) DEFAULT NULL, http_code int(11) DEFAULT NULL, headers longtext DEFAULT NULL, payload longtext DEFAULT NULL, message text DEFAULT NULL, PRIMARY KEY (id), KEY session_id (session_id), KEY transaction_id (transaction_id), KEY order_id (order_id), KEY status (status), KEY event (event) ) $charset_collate;"; dbDelta( $sql_logs );
Safe to delete?
If you have uninstalled KuvarPay Payment Gateway for WooCommerce, 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_kuvarpay_webhook_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.