wp_dlm_order_transaction

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
🔑idINTNO
date_createdDATETIMEYES
date_modifiedDATETIMEYES
amountINTYES
statusVARCHAR(50)YES
processorVARCHAR(255)YES
processor_nice_nameVARCHAR(255)YES
processor_transaction_idVARCHAR(255)YES
processor_statusVARCHAR(255)YES
order_idINT UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_dlm_order_transaction` ( `id` INT NOT NULL AUTO_INCREMENT, `date_created` DATETIME NULL, `date_modified` DATETIME NULL, `amount` INT NULL, `status` VARCHAR(50) NULL, `processor` VARCHAR(255) NULL, `processor_nice_name` VARCHAR(255) NULL, `processor_transaction_id` VARCHAR(255) NULL, `processor_status` VARCHAR(255) NULL, `order_id` INT UNSIGNED NOT NULL, PRIMARY KEY (`id`), CONSTRAINT `wp_fk_transaction_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_transaction`;

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

Other tables from Download Monitor