wp_coxwall_login_attempts
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| ip_address | VARCHAR(45) | NO |
| username | VARCHAR(200) | NO |
| attempted | TINYINT(1) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_coxwall_login_attempts ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, ip_address VARCHAR(45) NOT NULL, username VARCHAR(200) NOT NULL DEFAULT '', attempted TINYINT(1) NOT NULL DEFAULT 1, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY ip_address (ip_address), KEY created_at (created_at) ) $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_login_attempts`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CoxWall