wp_dlm_order_item
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| order_id | INT UNSIGNED | NO |
| label | VARCHAR(255) | YES |
| qty | INT | YES |
| product_id | INT UNSIGNED | YES |
| tax_class | VARCHAR(255) | YES |
| tax_total | INT | YES |
| subtotal | INT | YES |
| total | INT | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_dlm_order_item` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `order_id` INT UNSIGNED NOT NULL, `label` VARCHAR(255) NULL, `qty` INT NULL, `product_id` INT UNSIGNED NULL, `tax_class` VARCHAR(255) NULL, `tax_total` INT NULL, `subtotal` INT NULL, `total` INT NULL, PRIMARY KEY (`id`), CONSTRAINT `wp_fk_order_item_order1` FOREIGN KEY (`order_id`) REFERENCES `wp_dlm_order` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) 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_item`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Download Monitor