wp_fe_event_orders

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
uidCHAR(40)NO
event_idBIGINT(20) UNSIGNEDNO
event_dateDATETIMEYES
payment_idVARCHAR(255)NO
payment_statusVARCHAR(32)NO
custom_statusVARCHAR(32)NO
created_atDATETIMENO
nameVARCHAR(50)NO
emailVARCHAR(100)NO
input_fieldsTEXTNO
num_ticketsINTNO
totalDECIMAL(10,4)NO
discountDECIMAL(10,4)NO
ip_addressVARCHAR(45)NO

CREATE TABLE Statement

CREATE TABLE wp_fe_event_orders ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, uid CHAR(40) NOT NULL DEFAULT '', event_id BIGINT(20) UNSIGNED NOT NULL, event_date DATETIME NULL DEFAULT NULL, payment_id VARCHAR(255) NOT NULL DEFAULT '', payment_status VARCHAR(32) NOT NULL DEFAULT '', custom_status VARCHAR(32) NOT NULL DEFAULT '', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, name VARCHAR(50) NOT NULL DEFAULT '', email VARCHAR(100) NOT NULL DEFAULT '', input_fields TEXT NOT NULL, num_tickets INT NOT NULL DEFAULT '0', total DECIMAL(10,4) NOT NULL DEFAULT '0.0000', discount DECIMAL(10,4) NOT NULL DEFAULT '0.0000', ip_address VARCHAR(45) NOT NULL, PRIMARY KEY (id), UNIQUE KEY uid (uid(40)), INDEX event_id (event_id), INDEX email (email) ) 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_orders`;

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

Other tables from Fast Events