wp_mab_fcm_details
StaticStores mab fcm details data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑fcm_details_id | int(10) | NO |
| email_id | varchar(255) | YES |
| order_id | int(10) | YES |
| cart | text | YES |
| fcm_id | text | NO |
| notification_sent_status | int(2) | YES |
| last_order_status | int(11) | NO |
| date_add | datetime | NO |
| date_upd | datetime | NO |
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