wp_sm_sessions
StaticStores session data for tracking user or visitor state.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| session_key | char(32) | NO |
| session_value | LONGTEXT | NO |
| session_expiry | BIGINT(20) UNSIGNED | NO |
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.