wp_aswp_events

Static

Stores aswp events data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
event_typeVARCHAR(50)NO
severityVARCHAR(10)NO
ipVARCHAR(45)NO
user_idBIGINT UNSIGNEDNO
urlTEXTNO
methodVARCHAR(10)NO
rule_idVARCHAR(40)NO
descriptionTEXTNO
countryVARCHAR(2)NO
created_atDATETIMENO

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