wp_wph_captcha_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
ip_addressvarchar(100)NO
reasonvarchar(255)NO
statusvarchar(20)NO
providervarchar(50)NO
scorefloatYES
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_wph_captcha_logs ( id bigint(20) NOT NULL AUTO_INCREMENT, ip_address varchar(100) NOT NULL DEFAULT '', reason varchar(255) NOT NULL DEFAULT '', status varchar(20) NOT NULL DEFAULT 'failed', provider varchar(50) NOT NULL DEFAULT '', score float DEFAULT NULL, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY created_at (created_at) ) {$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_captcha_logs`;

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

Other tables from WP Helper Premium