wp_kict_kpg_order_transactions

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
order_numbervarchar(255)NO
transaction_idvarchar(255)NO
transaction_statusvarchar(255)NO

CREATE TABLE Statement

create table KICT_KPG_order_transactions ( `order_number` varchar(255) not null, `transaction_id` varchar(255) not null, `transaction_status` varchar(255) not null)"; $KPG_config_result=$wpdb->get_results($KPG_config_query);

Safe to delete?

If you have uninstalled KICT Payment Gateway, 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_kict_kpg_order_transactions`;

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