wp_mab_fcm_details

Static

Stores mab fcm details data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑fcm_details_idint(10)NO
email_idvarchar(255)YES
order_idint(10)YES
carttextYES
fcm_idtextNO
notification_sent_statusint(2)YES
last_order_statusint(11)NO
date_adddatetimeNO
date_upddatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_mab_fcm_details` (`fcm_details_id` int(10) NOT NULL AUTO_INCREMENT, `email_id` varchar(255) DEFAULT NULL, `order_id` int(10) DEFAULT NULL, `cart` text, `fcm_id` text NOT NULL, `notification_sent_status` int(2) DEFAULT NULL, `last_order_status` int(11) NOT NULL DEFAULT '0', `date_add` datetime NOT NULL, `date_upd` datetime NOT NULL, PRIMARY KEY (`fcm_details_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_fcm_details`;

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

Other tables from Knowband Mobile App Builder