wp_aswp_events
StaticStores aswp events data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| event_type | VARCHAR(50) | NO |
| severity | VARCHAR(10) | NO |
| ip | VARCHAR(45) | NO |
| user_id | BIGINT UNSIGNED | NO |
| url | TEXT | NO |
| method | VARCHAR(10) | NO |
| rule_id | VARCHAR(40) | NO |
| description | TEXT | NO |
| country | VARCHAR(2) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_aswp_events ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, event_type VARCHAR(50) NOT NULL, severity VARCHAR(10) NOT NULL DEFAULT 'medium', ip VARCHAR(45) NOT NULL DEFAULT '', user_id BIGINT UNSIGNED NOT NULL DEFAULT 0, url TEXT NOT NULL, method VARCHAR(10) NOT NULL DEFAULT '', rule_id VARCHAR(40) NOT NULL DEFAULT '', description TEXT NOT NULL, country VARCHAR(2) NOT NULL DEFAULT '', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY event_type (event_type), KEY severity (severity), KEY ip (ip), KEY created_at (created_at) ) $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_events`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Atlant Security