wp_aswp_whitelist
StaticStores aswp whitelist data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| type | VARCHAR(20) | NO |
| value | VARCHAR(255) | NO |
| label | VARCHAR(100) | NO |
| created_by | BIGINT UNSIGNED | NO |
| created_at | DATETIME | NO |
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