wp_fe_event_log

Static

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

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
event_idBIGINT(20) UNSIGNEDNO
order_idBIGINT(20) UNSIGNEDNO
created_atDATETIMENO
log_typeVARCHAR(32)NO
descriptionTEXTNO

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