wp_fe_event_seats
StaticStores fe event seats data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| event_id | BIGINT(20) UNSIGNED | NO |
| num_seats | INT UNSIGNED | NO |
| last_seat_id | INT UNSIGNED | NO |
| open_seats | TINYINT(1) | NO |
| seat_format | VARCHAR(32) | NO |
| seat_config | MEDIUMTEXT | NO |
| seat_map | MEDIUMTEXT | NO |
| linked_event | BIGINT(20) UNSIGNED | NO |
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