wp_mab_mobileapp_product_data

Static

Stores product records and related data.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
product_typevarchar(200)NO
category_productstextYES
custom_productstextYES
image_content_modevarchar(200)NO
number_of_productsint(11)NO
id_categoryint(11)YES
id_componentint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_mab_mobileapp_product_data` (`id` int(11) NOT NULL AUTO_INCREMENT, `product_type` varchar(200) NOT NULL, `category_products` text, `custom_products` text, `image_content_mode` varchar(200) NOT NULL, `number_of_products` int(11) NOT NULL, `id_category` int(11) DEFAULT NULL, `id_component` int(11) NOT NULL, PRIMARY KEY (`id`)) ENGINE

Safe to delete?

If you have uninstalled Knowband Mobile App 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_mab_mobileapp_product_data`;

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

Other tables from Knowband Mobile App Builder