wp_dlm_order

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
statusVARCHAR(255)NO
date_createdDATETIMENO
date_modifiedDATETIMEYES
currencyVARCHAR(5)NO
hashVARCHAR(255)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_dlm_order` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `status` VARCHAR(255) NOT NULL, `date_created` DATETIME NOT NULL, `date_modified` DATETIME NULL, `currency` VARCHAR(5) NOT NULL, `hash` VARCHAR(255) NOT NULL, PRIMARY KEY (`id`) ) 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_order`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Download Monitor