wp_apbd_wps_custom_field
LiveStores apbd wps custom field data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_apbd_wps_custom_field` (\n `id` int unsigned NOT NULL AUTO_INCREMENT,\n `field_label` char(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `field_slug` char(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `help_text` char(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n `choose_category` char(225) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '' COMMENT 'FK(wp_apbd_wps_ticket_category,id,title)',\n `fld_option` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `fld_order` int unsigned NOT NULL,\n `where_to_create` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'I' COMMENT 'radio(I=In Registartion Form,T=Ticket Open Form Category)',\n `create_for` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'B' COMMENT 'radio(A=Admin Only,B=Both)',\n `field_type` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'T' COMMENT 'radio(T=Textbox,N=Numeric,D=Date,S=Switch,R=Radio,W=Dropdown,E=Text/Instruction,U=URL Input)',\n `is_required` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'bool(Y=Yes,N=No)',\n `has_condition` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'N' COMMENT 'bool(Y=Yes,N=No)',\n `conditions` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'textarea',\n `condition_rel` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'N' COMMENT 'bool(A=And,O=Or)',\n `status` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'bool(A=Active,I=Inactive)',\n `is_half_field` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'N' COMMENT 'bool(Y=Yes,N=No)',\n PRIMARY KEY (`id`)\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_custom_field`;
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