wp_coxwall_events

Static

Stores coxwall events data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
event_typeVARCHAR(100)NO
ip_addressVARCHAR(45)NO
user_idBIGINT(20)NO
messageTEXTNO
contextLONGTEXTYES
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_coxwall_events ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, event_type VARCHAR(100) NOT NULL, ip_address VARCHAR(45) NOT NULL DEFAULT '', user_id BIGINT(20) NOT NULL DEFAULT 0, message TEXT NOT NULL, context LONGTEXT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY event_type (event_type), 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_events`;

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

Other tables from CoxWall