wp_lunexia_malicious_ips

Static

Stores lunexia malicious ips data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
ip_addressvarchar(45)NO
threat_typevarchar(100)YES
confidenceint(10)YES
sourcevarchar(191)YES
first_seendatetimeYES
last_seendatetimeYES
is_activetinyint(1)YES
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_lunexia_malicious_ips ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, ip_address varchar(45) NOT NULL, threat_type varchar(100), confidence int(10) DEFAULT 0, source varchar(191), first_seen datetime, last_seen datetime, is_active tinyint(1) DEFAULT 1, created_at datetime NOT NULL, PRIMARY KEY (id), UNIQUE KEY ip_address (ip_address), KEY threat_type (threat_type), KEY is_active (is_active) ) {$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_malicious_ips`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Lunexia .htaccess Shield