wp_fe_event_user_groups
StaticStores fe event user groups data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| event_id | BIGINT(20) UNSIGNED | NO |
| name | VARCHAR(50) | NO |
| VARCHAR(100) | NO | |
| num_tickets | INT | NO |
CREATE TABLE Statement
CREATE TABLE wp_fe_event_user_groups ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, event_id BIGINT(20) UNSIGNED NOT NULL, name VARCHAR(50) NOT NULL DEFAULT '', email VARCHAR(100) NOT NULL DEFAULT '', num_tickets INT NOT NULL DEFAULT '0', PRIMARY KEY (id), UNIQUE KEY email (event_id,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_user_groups`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Fast Events