wp_dlm_session
StaticStores session data for tracking user or visitor state.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| key | VARCHAR(150) | NO |
| hash | VARCHAR(150) | NO |
| expiry | DATETIME | NO |
| data | LONGTEXT | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_dlm_session` ( `key` VARCHAR(150) NOT NULL, `hash` VARCHAR(150) NOT NULL, `expiry` DATETIME NOT NULL, `data` LONGTEXT NOT NULL, PRIMARY KEY (`key`) ) ENGINE
Safe to delete?
If you have uninstalled Download Monitor, 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_dlm_session`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Download Monitor