wp_mimamebu_categories

Static

Stores mimamebu categories data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
name_enVARCHAR(191)YES
desc_enTEXTYES
imageTEXTYES
availableTINYINT(1)YES
category_orderINTYES
name_enVARCHAR(191)YES
desc_enTEXTYES
priceTEXTYES
currencyVARCHAR(10)YES
imageTEXTYES
availableTINYINT(1)YES
best_sellerTINYINT(1)YES
item_orderINTYES

CREATE TABLE Statement

CREATE TABLE wp_mimamebu_categories ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, name_en VARCHAR(191) DEFAULT NULL, desc_en TEXT, image TEXT, available TINYINT(1) DEFAULT 1, category_order INT DEFAULT 0, PRIMARY KEY (id) ) $cc;"; // items $sql_items = "CREATE TABLE wp_mimamebu_items ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, name_en VARCHAR(191) DEFAULT NULL, desc_en TEXT, price TEXT, currency VARCHAR(10) DEFAULT 'USD', image TEXT, available TINYINT(1) DEFAULT 1, best_seller TINYINT(1) DEFAULT 0, item_order INT DEFAULT 0, PRIMARY KEY (id) ) $cc;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta($sql_cat);

Safe to delete?

If you have uninstalled Mima Menu Builder, 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_mimamebu_categories`;

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

Other tables from Mima Menu Builder