wp_gglcptch_allowlist
StaticStores gglcptch allowlist data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| ip | CHAR(31) | NO |
| ip_from_int | BIGINT | YES |
| ip_to_int | BIGINT | YES |
| add_time | DATETIME | YES |
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