wp_cb_transactions
StaticStores cb transactions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| customerId | BIGINT(20) UNSIGNED | NO |
| transactionTime | TEXT | YES |
| receipt | VARCHAR(255) | YES |
| transactionType | VARCHAR(255) | YES |
| currency | VARCHAR(255) | YES |
| totalOrderAmount | VARCHAR(255) | YES |
| totalTaxAmount | VARCHAR(255) | YES |
| transaction | MEDIUMBLOB | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `cb_transactions` ( `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `customerId` BIGINT(20) UNSIGNED NOT NULL, `transactionTime` TEXT NULL, `receipt` VARCHAR(255) NULL , `transactionType` VARCHAR(255) NULL , `currency` VARCHAR(255) NULL, `totalOrderAmount` VARCHAR(255) NULL, `totalTaxAmount` VARCHAR(255) NULL, `transaction` MEDIUMBLOB NULL, PRIMARY KEY (`id`), UNIQUE KEY `arv_cb_customers_uq` (`customerId`, `receipt` ASC)) ENGINE
Safe to delete?
If you have uninstalled WP ClickBank Vendor, 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_cb_transactions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP ClickBank Vendor