wp_apbd_wps_chatbot_embed_token

Static

Stores access tokens for authentication or API access.

CREATE TABLE Statement

CREATE TABLE `wp_apbd_wps_chatbot_embed_token` (\n  `id` int unsigned NOT NULL AUTO_INCREMENT,\n  `title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '' COMMENT 'Display name for admin',\n  `token` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT '64-char secure token',\n  `allowed_domains` text COLLATE utf8mb4_unicode_520_ci COMMENT 'Comma-separated list of allowed domains',\n  `feature_opts` text COLLATE utf8mb4_unicode_520_ci COMMENT 'Comma-separated feature flags',\n  `allowed_spaces` text COLLATE utf8mb4_unicode_520_ci COMMENT 'Comma-separated allowed KB space IDs',\n  `allowed_categories` text COLLATE utf8mb4_unicode_520_ci COMMENT 'Comma-separated allowed KB category IDs',\n  `primary_color` varchar(7) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'Hex color code e.g. #0bbc5c',\n  `restrict_docs_browsing` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'N' COMMENT 'Y=Restrict N=No restriction',\n  `status` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'A' COMMENT 'A=Active, I=Inactive',\n  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `idx_token` (`token`),\n  KEY `idx_status` (`status`)\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_chatbot_embed_token`;

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