wp_apbd_wps_ticket_reply

Live

Stores apbd wps ticket reply data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_apbd_wps_ticket_reply` (\n  `ticket_id` int NOT NULL DEFAULT '0',\n  `reply_id` int NOT NULL DEFAULT '0',\n  `asigned_by` char(11) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '' COMMENT 'Ticket current asigned by',\n  `replied_by` char(11) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `replied_by_type` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'A' COMMENT 'radio(A=Staff,U=Ticket User,G=Guest Ticke User)',\n  `reply_text` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'textarea',\n  `reply_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n  `ticket_status` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'P' COMMENT 'drop(N=New,C=Closed,P=In-progress,R=Re-open)',\n  `is_private` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y' COMMENT 'boot(Y=Yes,N=No)',\n  `is_user_seen` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'N' COMMENT 'bool(Y=Yes,N=No)',\n  `seen_time` timestamp NULL DEFAULT NULL,\n  UNIQUE KEY `ticket_id` (`ticket_id`,`reply_id`) USING BTREE,\n  KEY `ticket_id_2` (`ticket_id`) 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_ticket_reply`;

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