wp_sessions
StaticStores session data for tracking user or visitor state.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑sess_id | VARCHAR(128) | YES |
| sess_data | TEXT | YES |
| sess_time | INTEGER | YES |
CREATE TABLE Statement
CREATE TABLE sessions (sess_id VARCHAR(128) PRIMARY KEY, sess_data TEXT, sess_time INTEGER)'; $this->pdo->exec($sql);
Safe to delete?
If you have uninstalled bidorbuy Store Integrator, 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_sessions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.