wp_fe_event_entries
StaticStores form submissions and user-entered data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| qrcode_id | BIGINT(20) UNSIGNED | NO |
| scancode | VARCHAR(16) | NO |
| tracking_lap | INT | NO |
| scan_date | DATETIME | NO |
| scan_location | VARCHAR(32) | NO |
| scan_level | TINYINT(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