wp_hvnly_section_cache
StaticA cache table that stores temporary computed or fetched data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| section_key | varchar(100) | NO |
| cache_data | longtext | NO |
| cache_hash | varchar(64) | NO |
| expires_at | datetime | YES |
| created_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_hvnly_section_cache ( id bigint(20) NOT NULL AUTO_INCREMENT, section_key varchar(100) NOT NULL, cache_data longtext NOT NULL, cache_hash varchar(64) NOT NULL, expires_at datetime DEFAULT NULL, created_at datetime DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY idx_section_key (section_key), KEY idx_expires (expires_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. $result1 = $wpdb->query($sql1);
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_section_cache`;
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