wp_aswp_login_attempts
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| ip | VARCHAR(45) | NO |
| username_hash | VARCHAR(64) | NO |
| attempt_count | INT UNSIGNED | NO |
| last_attempt | DATETIME | NO |
| locked_until | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_aswp_login_attempts ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, ip VARCHAR(45) NOT NULL, username_hash VARCHAR(64) NOT NULL DEFAULT '', attempt_count INT UNSIGNED NOT NULL DEFAULT 1, last_attempt DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, locked_until DATETIME NULL, PRIMARY KEY (id), UNIQUE KEY ip (ip), KEY locked_until (locked_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_login_attempts`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Atlant Security