wp_sm_sessions

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
session_keychar(32)NO
session_valueLONGTEXTNO
session_expiryBIGINT(20) UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE wp_sm_sessions ( session_key char(32) NOT NULL, session_value LONGTEXT NOT NULL, session_expiry BIGINT(20) UNSIGNED NOT NULL, PRIMARY KEY (session_key) ) $collate;" );

Safe to delete?

If you have uninstalled Awesome Support – WordPress HelpDesk & Support Plugin, 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_sm_sessions`;

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