wp_apbd_wps_debug_log

Live

A logging table that records activity, events, or audit history.

CREATE TABLE Statement

CREATE TABLE `wp_apbd_wps_debug_log` (\n  `id` int NOT NULL AUTO_INCREMENT,\n  `entry_type` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'S' COMMENT 'radio(E=Error,S=Success)',\n  `log_type` char(4) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'GEN' COMMENT 'drop(GEN=General,EML=Email,OTH=Others)',\n  `title` char(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `log_data` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `status` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'S' COMMENT 'drop(F=Failed,S=Success)',\n  `entry_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`) USING BTREE,\n  KEY `entry_type` (`entry_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_debug_log`;

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