wp_meetab_locations
StaticStores meetab locations data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| name | VARCHAR(255) | NO |
| address | VARCHAR(255) | YES |
| city | VARCHAR(100) | YES |
| country | VARCHAR(100) | YES |
| timezone | VARCHAR(50) | YES |
| max_guests | INT UNSIGNED | YES |
| contact_email | VARCHAR(255) | YES |
| contact_phone | VARCHAR(20) | YES |
| settings_json | LONGTEXT | YES |
| active | TINYINT(1) | YES |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_meetab_locations ( id BIGINT UNSIGNED AUTO_INCREMENT, name VARCHAR(255) NOT NULL, address VARCHAR(255), city VARCHAR(100), country VARCHAR(100), timezone VARCHAR(50), max_guests INT UNSIGNED DEFAULT 80, contact_email VARCHAR(255), contact_phone VARCHAR(20), settings_json LONGTEXT, active TINYINT(1) DEFAULT 1, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY active (active) ) $charset_collate;");
Safe to delete?
If you have uninstalled mee-table – Restaurant Reservations, Gift Cards & Event Tickets, 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_meetab_locations`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from mee-table – Restaurant Reservations, Gift Cards & Event Tickets