wp_lunexia_geo_cache

Static

A cache table that stores temporary computed or fetched data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
ip_addressvarchar(45)NO
country_codevarchar(10)YES
country_namevarchar(191)YES
regionvarchar(191)YES
cityvarchar(191)YES
latitudedecimal(10,8)YES
longitudedecimal(11,8)YES
asnvarchar(50)YES
hosting_providervarchar(191)YES
is_vpntinyint(1)YES
is_proxytinyint(1)YES
is_datacentertinyint(1)YES
threat_levelvarchar(20)YES
last_lookupdatetimeYES
cache_expiresdatetimeYES
created_atdatetimeNO

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