wp_dlm_order_customer
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| first_name | VARCHAR(255) | YES |
| last_name | VARCHAR(255) | YES |
| company | VARCHAR(255) | YES |
| address_1 | VARCHAR(255) | YES |
| address_2 | VARCHAR(255) | YES |
| city | VARCHAR(255) | YES |
| state | VARCHAR(255) | YES |
| postcode | VARCHAR(255) | YES |
| country | VARCHAR(5) | YES |
| VARCHAR(255) | YES | |
| phone | VARCHAR(50) | YES |
| ip_address | VARCHAR(50) | YES |
| order_id | INT UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_dlm_order_customer` ( `first_name` VARCHAR(255) NULL, `last_name` VARCHAR(255) NULL, `company` VARCHAR(255) NULL, `address_1` VARCHAR(255) NULL, `address_2` VARCHAR(255) NULL, `city` VARCHAR(255) NULL, `state` VARCHAR(255) NULL, `postcode` VARCHAR(255) NULL, `country` VARCHAR(5) NULL, `email` VARCHAR(255) NULL, `phone` VARCHAR(50) NULL, `ip_address` VARCHAR(50) NULL, `order_id` INT UNSIGNED NOT NULL, PRIMARY KEY (`order_id`), CONSTRAINT `wp_fk_order_customer_order` 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_customer`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Download Monitor