wp_mimamebu_categories
StaticStores mimamebu categories data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| name_en | VARCHAR(191) | YES |
| desc_en | TEXT | YES |
| image | TEXT | YES |
| available | TINYINT(1) | YES |
| category_order | INT | YES |
| name_en | VARCHAR(191) | YES |
| desc_en | TEXT | YES |
| price | TEXT | YES |
| currency | VARCHAR(10) | YES |
| image | TEXT | YES |
| available | TINYINT(1) | YES |
| best_seller | TINYINT(1) | YES |
| item_order | INT | YES |
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