wp_cb_customers

Static

Stores cb customers data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
fullNameVARCHAR(255)YES
firstNameVARCHAR(255)YES
lastNameVARCHAR(255)YES
emailVARCHAR(255)YES
passwordVARCHAR(255)YES
registeredVARCHAR(20)YES
isTestTINYINT(1)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `cb_customers` ( `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `fullName` VARCHAR(255) NULL, `firstName` VARCHAR(255) NULL, `lastName` VARCHAR(255) NULL, `email` VARCHAR(255) NULL, `password` VARCHAR(255) NULL, `registered` VARCHAR(20) NULL DEFAULT '', `isTest` TINYINT(1) NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `arv_cb_customers_uq` (`email` 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_customers`;

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

Other tables from WP ClickBank Vendor