wp_wph_spam_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| ip_address | varchar(100) | NO |
| varchar(255) | NO | |
| reason | varchar(255) | NO |
| form_plugin | varchar(100) | NO |
| country | varchar(5) | NO |
| status | varchar(20) | NO |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_wph_spam_logs ( id bigint(20) NOT NULL AUTO_INCREMENT, ip_address varchar(100) NOT NULL DEFAULT '', email varchar(255) NOT NULL DEFAULT '', reason varchar(255) NOT NULL DEFAULT '', form_plugin varchar(100) NOT NULL DEFAULT '', country varchar(5) NOT NULL DEFAULT '', status varchar(20) NOT NULL DEFAULT 'blocked', created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY created_at (created_at), KEY ip_address (ip_address(20)) ) {$charset};"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );Safe to delete?
If you have uninstalled WP Helper Premium, 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_wph_spam_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Helper Premium