wp_emd_sessions
StaticStores session data for tracking user or visitor state.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑session_id | BIGINT(20) UNSIGNED | NO |
| session_key | char(32) | NO |
| session_value | LONGTEXT | NO |
| session_expiry | BIGINT(20) UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE wp_emd_sessions ( session_id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, session_key char(32) NOT NULL, session_value LONGTEXT NOT NULL, session_expiry BIGINT(20) UNSIGNED NOT NULL, PRIMARY KEY (session_key), UNIQUE KEY session_id (session_id) ) $collate;"; require_once( EMD_ADMIN_DIR . '/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Video Gallery – YouTube Gallery, Playlist & Video Grid, 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_emd_sessions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.