wp_dhle_leads

Static

Stores dhle leads data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
nameVARCHAR(255)NO
emailVARCHAR(255)NO
phoneVARCHAR(50)NO
messageTEXTNO
statusVARCHAR(50)NO
assigned_toBIGINT UNSIGNEDYES
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_dhle_leads ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL DEFAULT '', email VARCHAR(255) NOT NULL DEFAULT '', phone VARCHAR(50) NOT NULL DEFAULT '', message TEXT NOT NULL, status VARCHAR(50) NOT NULL DEFAULT 'new', assigned_to BIGINT UNSIGNED DEFAULT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY status (status), KEY assigned_to (assigned_to) ) $charset_collate;"; dbDelta( $sql_leads );

Safe to delete?

If you have uninstalled Devex Hub Smart Lead Engine, 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_dhle_leads`;

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

Other tables from Devex Hub Smart Lead Engine