wp_dhle_leads
StaticStores dhle leads data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| name | VARCHAR(255) | NO |
| VARCHAR(255) | NO | |
| phone | VARCHAR(50) | NO |
| message | TEXT | NO |
| status | VARCHAR(50) | NO |
| assigned_to | BIGINT UNSIGNED | YES |
| created_at | DATETIME | NO |
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