wp_hvnly_audit_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| user_id | bigint(20) | YES |
| action | varchar(100) | NO |
| entity_type | varchar(50) | NO |
| entity_id | bigint(20) | YES |
| old_value | longtext | YES |
| new_value | longtext | YES |
| ip_address | varchar(45) | YES |
| user_agent | text | YES |
| created_at | datetime | YES |
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