wp_woocommerce_bolt_session_customer_ids

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
🔑IDBIGINT UNSIGNEDNO
order_referencevarchar(16)NO
customer_idvarchar(32)NO
created_atBIGINT UNSIGNEDNO
updated_atBIGINT UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE wp_woocommerce_bolt_session_customer_ids ( ID BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, order_reference varchar(16) NOT NULL, customer_id varchar(32) NOT NULL, created_at BIGINT UNSIGNED NOT NULL, updated_at BIGINT UNSIGNED NOT NULL, PRIMARY KEY (order_reference), 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_session_customer_ids`;

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

Other tables from Bolt Checkout for WooCommerce