wp_kuvarpay_webhook_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
received_atdatetimeYES
eventvarchar(100)YES
statusvarchar(50)YES
session_idvarchar(255)YES
transaction_idvarchar(255)YES
order_idbigint(20)YES
signature_headervarchar(512)YES
signature_validtinyint(1)YES
ip_addressvarchar(45)YES
http_codeint(11)YES
headerslongtextYES
payloadlongtextYES
messagetextYES

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.