WooCommerce 2.5 woocommerce_sessions table
-
WooCommerce 2.5 creates a new table for sessions. The table fails to be created with SQLite.
Here’s the table creation in class-wc-install.php:
CREATE TABLE {$wpdb->prefix}woocommerce_sessions (
session_id bigint(20) NOT NULL AUTO_INCREMENT,
session_key char(32) NOT NULL,
session_value longtext NOT NULL,
session_expiry bigint(20) NOT NULL,
UNIQUE KEY session_id (session_id),
PRIMARY KEY (session_key)
) $collate;Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘WooCommerce 2.5 woocommerce_sessions table’ is closed to new replies.