wp_bit_assist_responses

Live

Stores bit assist responses data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_bit_assist_responses` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `widget_channel_id` bigint unsigned NOT NULL,\n  `response` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `widget_channel_id` (`widget_channel_id`),\n  CONSTRAINT `wp_bit_assist_responses_ibfk_1` FOREIGN KEY (`widget_channel_id`) REFERENCES `wp_bit_assist_widget_channels` (`id`) ON DELETE CASCADE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Chat Widget: Floating Customer Support Button for 30+ Channels, Supporting SMS, Calls, and Chat – Bit Assist, 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_bit_assist_responses`;

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

Other tables from Chat Widget: Floating Customer Support Button for 30+ Channels, Supporting SMS, Calls, and Chat – Bit Assist