wp_hvnly_field_index
StaticStores hvnly field index data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| property_id | bigint(20) | NO |
| field_key | varchar(100) | NO |
| field_value_index | varchar(255) | YES |
| numeric_value | decimal(20,6) | YES |
| date_value | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_hvnly_field_index ( id bigint(20) NOT NULL AUTO_INCREMENT, property_id bigint(20) NOT NULL, field_key varchar(100) NOT NULL, field_value_index varchar(255) DEFAULT NULL, numeric_value decimal(20,6) DEFAULT NULL, date_value datetime DEFAULT NULL, PRIMARY KEY (id), KEY idx_property (property_id), KEY idx_field_key (field_key), KEY idx_numeric (numeric_value) ) $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. $result2 = $wpdb->query($sql2);
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_field_index`;
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