wp_dlm_session

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
keyVARCHAR(150)NO
hashVARCHAR(150)NO
expiryDATETIMENO
dataLONGTEXTNO

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