wp_mab_push_notification_history
StaticStores mab push notification history data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑notification_id | int(10) | NO |
| title | varchar(255) | NO |
| message | varchar(500) | YES |
| image_url | text | NO |
| redirect_activity | enum('home', 'category', 'product') | NO |
| category_id | int(10) | YES |
| product_id | int(10) | YES |
| date_added | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_mab_push_notification_history` (`notification_id` int(10) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `message` varchar(500) DEFAULT NULL, `image_url` text NOT NULL, `redirect_activity` enum('home', 'category', 'product') NOT NULL, `category_id` int(10) DEFAULT NULL, `product_id` int(10) DEFAULT NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`notification_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_push_notification_history`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Knowband Mobile App Builder