wp_hvnly_webhook_queue
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| webhook_url | varchar(500) | NO |
| payload | longtext | NO |
| attempts | int | YES |
| max_attempts | int | YES |
| last_error | text | YES |
| status | varchar(20) | YES |
| scheduled_at | datetime | YES |
| created_at | datetime | YES |
| processed_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_hvnly_webhook_queue ( id bigint(20) NOT NULL AUTO_INCREMENT, webhook_url varchar(500) NOT NULL, payload longtext NOT NULL, attempts int DEFAULT 0, max_attempts int DEFAULT 3, last_error text, status varchar(20) DEFAULT 'pending', scheduled_at datetime DEFAULT NULL, created_at datetime DEFAULT CURRENT_TIMESTAMP, processed_at datetime DEFAULT NULL, PRIMARY KEY (id), KEY idx_status (status), KEY idx_scheduled (scheduled_at) ) $charset_collate;"; // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- Static CREATE TABLE schema for plugin migration. // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Plugin migration creates custom tables. $result4 = $wpdb->query($sql4);
Safe to delete?
If you have uninstalled Havenlytics – Real Estate Plugin with Advanced Search, Maps & Property Builder, 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_hvnly_webhook_queue`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Havenlytics – Real Estate Plugin with Advanced Search, Maps & Property Builder