wp_lunexia_geo_cache
StaticA cache table that stores temporary computed or fetched data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| ip_address | varchar(45) | NO |
| country_code | varchar(10) | YES |
| country_name | varchar(191) | YES |
| region | varchar(191) | YES |
| city | varchar(191) | YES |
| latitude | decimal(10,8) | YES |
| longitude | decimal(11,8) | YES |
| asn | varchar(50) | YES |
| hosting_provider | varchar(191) | YES |
| is_vpn | tinyint(1) | YES |
| is_proxy | tinyint(1) | YES |
| is_datacenter | tinyint(1) | YES |
| threat_level | varchar(20) | YES |
| last_lookup | datetime | YES |
| cache_expires | datetime | YES |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_lunexia_geo_cache ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, ip_address varchar(45) NOT NULL, country_code varchar(10), country_name varchar(191), region varchar(191), city varchar(191), latitude decimal(10,8), longitude decimal(11,8), asn varchar(50), hosting_provider varchar(191), is_vpn tinyint(1) DEFAULT 0, is_proxy tinyint(1) DEFAULT 0, is_datacenter tinyint(1) DEFAULT 0, threat_level varchar(20), last_lookup datetime, cache_expires datetime, created_at datetime NOT NULL, PRIMARY KEY (id), UNIQUE KEY ip_address (ip_address), KEY country_code (country_code), KEY asn (asn), KEY cache_expires (cache_expires) ) {$charset_collate};"; dbDelta( $sql );Safe to delete?
If you have uninstalled Lunexia .htaccess Shield, 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_lunexia_geo_cache`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Lunexia .htaccess Shield