wp_meetab_locations

Static

Stores meetab locations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
nameVARCHAR(255)NO
addressVARCHAR(255)YES
cityVARCHAR(100)YES
countryVARCHAR(100)YES
timezoneVARCHAR(50)YES
max_guestsINT UNSIGNEDYES
contact_emailVARCHAR(255)YES
contact_phoneVARCHAR(20)YES
settings_jsonLONGTEXTYES
activeTINYINT(1)YES
created_atDATETIMENO

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