wp_aswp_audit_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | NO |
| username | VARCHAR(60) | NO |
| action | VARCHAR(80) | NO |
| object_type | VARCHAR(40) | NO |
| object_id | VARCHAR(80) | NO |
| description | TEXT | NO |
| ip | VARCHAR(45) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_aswp_audit_log ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT UNSIGNED NOT NULL DEFAULT 0, username VARCHAR(60) NOT NULL DEFAULT '', action VARCHAR(80) NOT NULL, object_type VARCHAR(40) NOT NULL DEFAULT '', object_id VARCHAR(80) NOT NULL DEFAULT '', description TEXT NOT NULL, ip VARCHAR(45) NOT NULL DEFAULT '', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY user_id (user_id), KEY action (action), 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_audit_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Atlant Security