wp_hvnly_audit_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
user_idbigint(20)YES
actionvarchar(100)NO
entity_typevarchar(50)NO
entity_idbigint(20)YES
old_valuelongtextYES
new_valuelongtextYES
ip_addressvarchar(45)YES
user_agenttextYES
created_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_hvnly_audit_log ( id bigint(20) NOT NULL AUTO_INCREMENT, user_id bigint(20) DEFAULT NULL, action varchar(100) NOT NULL, entity_type varchar(50) NOT NULL, entity_id bigint(20) DEFAULT NULL, old_value longtext, new_value longtext, ip_address varchar(45) DEFAULT NULL, user_agent text, created_at datetime DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_action (action), KEY idx_entity (entity_type, entity_id), KEY idx_created (created_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. $result3 = $wpdb->query($sql3);

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_audit_log`;

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