wp_dhle_notes
StaticStores dhle notes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| lead_id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | NO |
| note | TEXT | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_dhle_notes ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, lead_id BIGINT UNSIGNED NOT NULL, user_id BIGINT UNSIGNED NOT NULL, note TEXT NOT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY lead_id (lead_id) ) $charset_collate;"; dbDelta( $sql_notes );
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_notes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Devex Hub Smart Lead Engine