wp_fe_event_entries

Static

Stores form submissions and user-entered data.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
qrcode_idBIGINT(20) UNSIGNEDNO
scancodeVARCHAR(16)NO
tracking_lapINTNO
scan_dateDATETIMENO
scan_locationVARCHAR(32)NO
scan_levelTINYINT(1)NO

CREATE TABLE Statement

CREATE TABLE wp_fe_event_entries ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, qrcode_id BIGINT(20) UNSIGNED NOT NULL, scancode VARCHAR(16) NOT NULL DEFAULT '', tracking_lap INT NOT NULL DEFAULT '0', scan_date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, scan_location VARCHAR(32) NOT NULL DEFAULT '', scan_level TINYINT(1) NOT NULL DEFAULT '1', PRIMARY KEY (id), UNIQUE KEY scan_entry (qrcode_id, scancode, tracking_lap) ) 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_entries`;

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

Other tables from Fast Events