wp_apbd_wps_notification
LiveStores apbd wps notification data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_apbd_wps_notification` (\n `id` int unsigned NOT NULL AUTO_INCREMENT,\n `user_id` char(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `title` char(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `msg` char(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `entry_type` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'N' COMMENT 'radio(N=Notification,M=message)',\n `entry_link` char(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `n_counter` decimal(2,0) unsigned NOT NULL DEFAULT '1',\n `is_popup_link` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'N' COMMENT 'bool(Y=Yes,N=No)',\n `view_time` timestamp NULL DEFAULT NULL,\n `entry_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n `item_type` char(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `extra_param` char(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `msg_param` char(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `status` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'A' COMMENT 'radio(A=Active,V=Viewed,D=Deleted)',\n PRIMARY KEY (`id`) USING BTREE,\n KEY `user_type` (`user_id`) USING BTREE,\n KEY `user_id_item` (`user_id`,`item_type`) USING BTREE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Support Genix – Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System, 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_apbd_wps_notification`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Support Genix – Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System