wp_dlm_order
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| status | VARCHAR(255) | NO |
| date_created | DATETIME | NO |
| date_modified | DATETIME | YES |
| currency | VARCHAR(5) | NO |
| hash | VARCHAR(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