wp_hvnly_webhook_queue

Static

A job queue table for managing background tasks and scheduled operations.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
webhook_urlvarchar(500)NO
payloadlongtextNO
attemptsintYES
max_attemptsintYES
last_errortextYES
statusvarchar(20)YES
scheduled_atdatetimeYES
created_atdatetimeYES
processed_atdatetimeYES

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