wp_fe_event_user_groups

Static

Stores fe event user groups data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
event_idBIGINT(20) UNSIGNEDNO
nameVARCHAR(50)NO
emailVARCHAR(100)NO
num_ticketsINTNO

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