wp_aswp_blocked_ips
StaticStores aswp blocked ips data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| ip | VARCHAR(45) | NO |
| ip_range | VARCHAR(50) | NO |
| reason | VARCHAR(255) | NO |
| rule_id | VARCHAR(40) | NO |
| request_count | INT UNSIGNED | NO |
| permanent | TINYINT(1) | NO |
| blocked_until | DATETIME | YES |
| created_by | BIGINT UNSIGNED | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
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