wp_dhle_webhook_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| payload | TEXT | NO |
| response | TEXT | NO |
| status | VARCHAR(50) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_dhle_webhook_logs ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, payload TEXT NOT NULL, response TEXT NOT NULL, status VARCHAR(50) NOT NULL DEFAULT 'pending', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY status (status) ) $charset_collate;"; dbDelta( $sql_logs );
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_webhook_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Devex Hub Smart Lead Engine