wp_fe_event_orders
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| uid | CHAR(40) | NO |
| event_id | BIGINT(20) UNSIGNED | NO |
| event_date | DATETIME | YES |
| payment_id | VARCHAR(255) | NO |
| payment_status | VARCHAR(32) | NO |
| custom_status | VARCHAR(32) | NO |
| created_at | DATETIME | NO |
| name | VARCHAR(50) | NO |
| VARCHAR(100) | NO | |
| input_fields | TEXT | NO |
| num_tickets | INT | NO |
| total | DECIMAL(10,4) | NO |
| discount | DECIMAL(10,4) | NO |
| ip_address | VARCHAR(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