wp_fe_event_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| event_id | BIGINT(20) UNSIGNED | NO |
| order_id | BIGINT(20) UNSIGNED | NO |
| created_at | DATETIME | NO |
| log_type | VARCHAR(32) | NO |
| description | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE wp_fe_event_log ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, event_id BIGINT(20) UNSIGNED NOT NULL, order_id BIGINT(20) UNSIGNED NOT NULL, created_at DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', log_type VARCHAR(32) NOT NULL DEFAULT '', description TEXT NOT NULL, PRIMARY KEY (id), INDEX date1 (created_at), INDEX date2 (event_id, created_at), INDEX order_idx (order_id) ) ENGINE
Safe to delete?
If you have uninstalled Fast Events, 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_fe_event_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Fast Events