wp_fe_event_seats

Static

Stores fe event seats data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
event_idBIGINT(20) UNSIGNEDNO
num_seatsINT UNSIGNEDNO
last_seat_idINT UNSIGNEDNO
open_seatsTINYINT(1)NO
seat_formatVARCHAR(32)NO
seat_configMEDIUMTEXTNO
seat_mapMEDIUMTEXTNO
linked_eventBIGINT(20) UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE wp_fe_event_seats ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, event_id BIGINT(20) UNSIGNED NOT NULL, num_seats INT UNSIGNED NOT NULL DEFAULT '0', last_seat_id INT UNSIGNED NOT NULL DEFAULT '0', open_seats TINYINT(1) NOT NULL DEFAULT '0', seat_format VARCHAR(32) NOT NULL DEFAULT '', seat_config MEDIUMTEXT NOT NULL, seat_map MEDIUMTEXT NOT NULL, linked_event BIGINT(20) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY (id), UNIQUE INDEX event_id (event_id) ) 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_seats`;

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

Other tables from Fast Events