wp_cg_blocked_addresses
StaticStores cg blocked addresses data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) | NO |
| address_hash | VARCHAR(64) | NO |
| address_text | TEXT | NO |
| added_by | BIGINT(20) UNSIGNED | YES |
| reason | TEXT | YES |
| expires_at | DATETIME | YES |
| auto_blocked | TINYINT(1) | YES |
| created_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_cg_blocked_addresses ( id BIGINT(20) NOT NULL AUTO_INCREMENT, address_hash VARCHAR(64) NOT NULL, address_text TEXT NOT NULL, added_by BIGINT(20) UNSIGNED DEFAULT NULL, reason TEXT DEFAULT NULL, expires_at DATETIME DEFAULT NULL, auto_blocked TINYINT(1) DEFAULT 0, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY address_hash (address_hash) ) $charset_collate;"; dbDelta($sql);
Safe to delete?
If you have uninstalled CheckoutGuard, 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_cg_blocked_addresses`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CheckoutGuard