wp_wph_spam_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
ip_addressvarchar(100)NO
emailvarchar(255)NO
reasonvarchar(255)NO
form_pluginvarchar(100)NO
countryvarchar(5)NO
statusvarchar(20)NO
created_atdatetimeNO

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