wp_dhle_notes

Static

Stores dhle notes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
lead_idBIGINT UNSIGNEDNO
user_idBIGINT UNSIGNEDNO
noteTEXTNO
created_atDATETIMENO

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