wp_coxwall_login_attempts

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
ip_addressVARCHAR(45)NO
usernameVARCHAR(200)NO
attemptedTINYINT(1)NO
created_atDATETIMENO

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