wp_mab_cms_page_data

Static

Stores mab cms page data data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑cms_idint(10)NO
page_titlevarchar(255)NO
link_toint(10)NO
statusTINYINT(2)NO
sort_orderINT(3)NO
date_addedDATETIMENO
date_modifiedTIMESTAMPNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_mab_cms_page_data` (`cms_id` int(10) NOT NULL AUTO_INCREMENT, `page_title` varchar(255) NOT NULL, `link_to` int(10) NOT NULL, `status` TINYINT(2) NOT NULL, `sort_order` INT(3) NOT NULL DEFAULT '0', `date_added` DATETIME NOT NULL, `date_modified` TIMESTAMP NOT NULL, PRIMARY KEY (`cms_id`))"));

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_cms_page_data`;

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

Other tables from Knowband Mobile App Builder