wp_woocommerce_stan_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 IF NOT EXISTS wp_woocommerce_stan_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; } /** * Sets up the database tables which the plugin needs to function. * * @since 1.0.0 * @static * @access public */ public function create_stan_sessions_table() { /** * * Tables: * woocommerce_stan_checkout_sessions - Table for storing various sessions in Stan plugin */ global $wpdb; $wpdb->hide_errors();

Safe to delete?

If you have uninstalled Stan Checkout, 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_stan_checkout_sessions`;

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