wp_aswp_blocked_ips

Static

Stores aswp blocked ips data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
ipVARCHAR(45)NO
ip_rangeVARCHAR(50)NO
reasonVARCHAR(255)NO
rule_idVARCHAR(40)NO
request_countINT UNSIGNEDNO
permanentTINYINT(1)NO
blocked_untilDATETIMEYES
created_byBIGINT UNSIGNEDNO
created_atDATETIMENO
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_aswp_blocked_ips ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, ip VARCHAR(45) NOT NULL, ip_range VARCHAR(50) NOT NULL DEFAULT '', reason VARCHAR(255) NOT NULL DEFAULT 'Manually blocked', rule_id VARCHAR(40) NOT NULL DEFAULT '', request_count INT UNSIGNED NOT NULL DEFAULT 0, permanent TINYINT(1) NOT NULL DEFAULT 0, blocked_until DATETIME NULL, created_by BIGINT UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY ip (ip), KEY permanent (permanent), KEY blocked_until (blocked_until) ) $charset;" );

Safe to delete?

If you have uninstalled Atlant Security, 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_aswp_blocked_ips`;

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

Other tables from Atlant Security