wp_aswp_audit_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
user_idBIGINT UNSIGNEDNO
usernameVARCHAR(60)NO
actionVARCHAR(80)NO
object_typeVARCHAR(40)NO
object_idVARCHAR(80)NO
descriptionTEXTNO
ipVARCHAR(45)NO
created_atDATETIMENO

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