wp_woocommerce_bolt_checkout_sessions

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
🔑IDBIGINT UNSIGNEDNO
session_keyvarchar(191)NO
session_valuelongtextNO
created_atBIGINT UNSIGNEDNO
updated_atBIGINT UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE wp_woocommerce_bolt_checkout_sessions ( ID BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, session_key varchar(191) NOT NULL, session_value longtext NOT NULL, created_at BIGINT UNSIGNED NOT NULL, updated_at BIGINT UNSIGNED NOT NULL, PRIMARY KEY (session_key), UNIQUE KEY ID (ID) ) $collate; "; return $tables; } /** * Set up the database tables which the plugin needs to function. * * @since 2.0.12 * @static * @access public */ public function create_bolt_sessions_table() { /** * * Tables: * woocommerce_bolt_sessions - Table for storing various sessions in bolt plugin */ global $wpdb; $wpdb->hide_errors();

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_checkout_sessions`;

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

Other tables from Bolt Checkout for WooCommerce