wp_woocommerce_bolt_external_customer_ids

Static

Stores woocommerce bolt external customer ids data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDBIGINT UNSIGNEDNO
external_idvarchar(191)NO
customer_idvarchar(32)NO
created_atBIGINT UNSIGNEDNO
updated_atBIGINT UNSIGNEDNO

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