wp_aswp_outbound_log

Static

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

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
urlTEXTNO
domainVARCHAR(255)NO
methodVARCHAR(10)NO
callerVARCHAR(120)NO
statusVARCHAR(20)NO
blockedTINYINT(1)NO
response_codeSMALLINTNO
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_aswp_outbound_log ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, url TEXT NOT NULL, domain VARCHAR(255) NOT NULL DEFAULT '', method VARCHAR(10) NOT NULL DEFAULT 'GET', caller VARCHAR(120) NOT NULL DEFAULT '', status VARCHAR(20) NOT NULL DEFAULT 'allowed', blocked TINYINT(1) NOT NULL DEFAULT 0, response_code SMALLINT NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY domain (domain(50)), KEY status (status), 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_outbound_log`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Atlant Security