wp_woocommerce_bolt_external_customer_ids
StaticStores woocommerce bolt external customer ids data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | BIGINT UNSIGNED | NO |
| external_id | varchar(191) | NO |
| customer_id | varchar(32) | NO |
| created_at | BIGINT UNSIGNED | NO |
| updated_at | BIGINT UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE wp_woocommerce_bolt_external_customer_ids ( ID BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, external_id varchar(191) NOT NULL, customer_id varchar(32) NOT NULL, created_at BIGINT UNSIGNED NOT NULL, updated_at BIGINT UNSIGNED NOT NULL, PRIMARY KEY (external_id), UNIQUE KEY ID (ID) ) $collate; "; dbDelta( $table );
Safe to delete?
If you have uninstalled Bolt Checkout 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_woocommerce_bolt_external_customer_ids`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bolt Checkout for WooCommerce