wp_apbd_wps_docs_searches_events

Live

Stores apbd wps docs searches events data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_apbd_wps_docs_searches_events` (\n  `id` int unsigned NOT NULL AUTO_INCREMENT,\n  `keyword_id` int unsigned NOT NULL,\n  `founded` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'bool(Y=Yes,N=No)',\n  `count` int NOT NULL DEFAULT '0',\n  `created_at` datetime NOT NULL,\n  `created_date` date GENERATED ALWAYS AS (cast(`created_at` as date)) STORED,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `keyword_id_founded_created_date` (`keyword_id`,`founded`,`created_date`),\n  KEY `keyword_id` (`keyword_id`),\n  KEY `founded` (`founded`),\n  KEY `created_at` (`created_at`),\n  KEY `created_date` (`created_date`),\n  CONSTRAINT `fk_keyword_id` FOREIGN KEY (`keyword_id`) REFERENCES `wp_apbd_wps_docs_search_keywords` (`id`) ON DELETE CASCADE\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_docs_searches_events`;

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