wp_clickbank
StaticStores clickbank data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| varchar(255) | NO | |
| receipt | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE wp_clickbank ( id mediumint(9) NOT NULL AUTO_INCREMENT, -- time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, email varchar(255) NOT NULL, receipt varchar(255) NOT NULL, -- url varchar(55) DEFAULT '' NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Save ClickBank Order Details 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_clickbank`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.