wp_gglcptch_allowlist

Static

Stores gglcptch allowlist data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
ipCHAR(31)NO
ip_from_intBIGINTYES
ip_to_intBIGINTYES
add_timeDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_gglcptch_allowlist` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `ip` CHAR(31) NOT NULL, `ip_from_int` BIGINT, `ip_to_int` BIGINT, `add_time` DATETIME, PRIMARY KEY (`id`) ) ENGINE

Safe to delete?

If you have uninstalled reCaptcha by BestWebSoft, 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_gglcptch_allowlist`;

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

Other tables from reCaptcha by BestWebSoft