wp_coxwall_blocked_ips

Static

Stores coxwall blocked ips data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
ip_addressVARCHAR(45)NO
reasonVARCHAR(200)NO
blocked_untilDATETIMEYES
permanentTINYINT(1)NO
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_coxwall_blocked_ips ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, ip_address VARCHAR(45) NOT NULL, reason VARCHAR(200) NOT NULL DEFAULT '', blocked_until DATETIME NULL, permanent TINYINT(1) NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY ip_address (ip_address) ) $charset;" );

Safe to delete?

If you have uninstalled CoxWall, 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_coxwall_blocked_ips`;

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

Other tables from CoxWall