wp_aswp_whitelist

Static

Stores aswp whitelist data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
typeVARCHAR(20)NO
valueVARCHAR(255)NO
labelVARCHAR(100)NO
created_byBIGINT UNSIGNEDNO
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_aswp_whitelist ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, type VARCHAR(20) NOT NULL DEFAULT 'ip', value VARCHAR(255) NOT NULL, label VARCHAR(100) NOT NULL DEFAULT '', created_by BIGINT UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY type_value (type, value(50)) ) $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_whitelist`;

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

Other tables from Atlant Security