wp_coxwall_events
StaticStores coxwall events data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| event_type | VARCHAR(100) | NO |
| ip_address | VARCHAR(45) | NO |
| user_id | BIGINT(20) | NO |
| message | TEXT | NO |
| context | LONGTEXT | YES |
| created_at | DATETIME | NO |
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