wp_mab_push_notification_history

Static

Stores mab push notification history data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑notification_idint(10)NO
titlevarchar(255)NO
messagevarchar(500)YES
image_urltextNO
redirect_activityenum('home', 'category', 'product')NO
category_idint(10)YES
product_idint(10)YES
date_addeddatetimeNO

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