wp_freshdesk

Static

Stores freshdesk data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_freshdesk` (\n  `id` bigint NOT NULL AUTO_INCREMENT,\n  `freshdesk_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  `category_id` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  `category_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  `folder_id` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  `folder_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  `articles_id` bigint DEFAULT NULL,\n  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  `display` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  `status` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,\n  PRIMARY KEY (`id`),\n  FULLTEXT KEY `title` (`title`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled HB FreshDesk, 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_freshdesk`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.