wp_lunexia_malicious_ips
StaticStores lunexia malicious ips data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| ip_address | varchar(45) | NO |
| threat_type | varchar(100) | YES |
| confidence | int(10) | YES |
| source | varchar(191) | YES |
| first_seen | datetime | YES |
| last_seen | datetime | YES |
| is_active | tinyint(1) | YES |
| created_at | datetime | NO |
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